34 lines
797 B
YAML
34 lines
797 B
YAML
version: '3'
|
|
services:
|
|
lms:
|
|
container_name: lms
|
|
image: lmscommunity/logitechmediaserver:8.3.0
|
|
volumes:
|
|
- config:/config
|
|
- music:/music:ro
|
|
- 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}
|
|
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 |