Necromancyr wrote:
>
> EDIT2: I setup a Alpine Linux, installed docker, and tried mapping to
> the same underlying directories (mounted in Alpine of course)...and it
> works. So, basically this is some kind of permissioning issue with
> Docker on Windows w/a Linux container. If anyone has it working in that
> setup, let me know. While things are working fine w/the Linux
> container...I feel like it defeats the purpose.
So I don't use Windows, but I do see many people struggling with
permissions. Why not use a volume? It's generally not recommended to
persist data using a bind mount (but I know it is super common). Anyway,
try something like this. You can add port mappings if you prefer. :)
Code:
--------------------
version: "2"
services:
lms:
image: doliana/logitech-media-server
network_mode: host
volumes:
- M:\ServerFolders\music:/srv/music
- K:\Docker\timezone:/etc/timezone:ro
- lms_config:/srv/squeezebox
volumes:
lms_config:
--------------------
------------------------------------------------------------------------
dasos's Profile: http://forums.slimdevices.com/member.php?userid=66897
View this thread: http://forums.slimdevices.com/showthread.php?t=111828
_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/unix