compose/funkwhale/compose.yaml

26 lines
661 B
YAML
Raw Permalink Normal View History

2023-03-09 22:10:22 +01:00
services:
funkwhale:
image: funkwhale/all-in-one:1.2.8
container_name: funkwhale
restart: unless-stopped
networks:
- traefik_proxy
env_file: .env
environment:
PUID: "994"
PGID: "994"
FUNKWHALE_HOSTNAME: "music.fanyx.xyz"
FUNKWHALE_PROTOCOL: "https"
NESTED_PROXY: "1"
volumes:
- /var/docker/funkwhale/data:/data
- /var/cloud/hendrik/public/Music:/music/hendrik:ro
labels:
traefik.enable: "true"
traefik.http.routers.funkwhale.entrypoints: "https"
traefik.http.routers.funkwhale.rule: "Host(`music.fanyx.xyz`)"
networks:
traefik_proxy:
name: traefik_proxy