diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index 774cd02..38bb9ce 100644 --- a/docker/docker-compose.yaml +++ b/docker/docker-compose.yaml @@ -1,34 +1,21 @@ version: '3' services: lms: - container_name: lms image: lmscommunity/logitechmediaserver:8.3.0 volumes: - config:/config - - music:/music:ro + - music:/music - playlist:/playlist - /etc/localtime:/etc/localtime:ro - /etc/timezone:/etc/timezone:ro - #ports: - # - 9999:9000/tcp - # - 9090:9090/tcp - # - 3483:3483/tcp - # - 3483:3483/udp - networks: - corehomenetwork: - ipv4_address: ${LMS_MACVLAN_IP} + ports: + - 9000:9000/tcp + - 9090:9090/tcp + - 3483:3483/tcp + - 3483:3483/udp restart: always volumes: config: playlist: music: - name: music - driver: local - driver_opts: - type: ${LMS_VOLUME_MUSIC_TYPE} - o: ${LMS_VOLUME_MUSIC_O} - device: "${LMS_VOLUME_MUSIC_DEVICE}" -networks: - corehomenetwork: - external: true - name: macvlan_pub_net \ No newline at end of file + external: true # docker volume create --driver local --opt type=none --opt device=/srv/music@nas.lan --opt o=bind music \ No newline at end of file