21 lines
554 B
YAML
21 lines
554 B
YAML
version: "3"
|
|
services:
|
|
navidrome:
|
|
container_name: navidrome
|
|
image: deluan/navidrome:latest
|
|
user: 1000:1000 # should be owner of volumes
|
|
ports:
|
|
- ${APP_PORT}:4533
|
|
restart: unless-stopped
|
|
environment:
|
|
# Optional: put your config options customization here. Examples:
|
|
ND_SCANSCHEDULE: 1h
|
|
ND_LOGLEVEL: info
|
|
ND_SESSIONTIMEOUT: 24h
|
|
ND_BASEURL: ""
|
|
volumes:
|
|
- ${APP_DATA_DIR}/navidrome/data:/data
|
|
- ${APP_DATA_DIR}/navidrome/music:/music:ro"
|
|
networks:
|
|
- tipi_main_network
|