-
-
Notifications
You must be signed in to change notification settings - Fork 325
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (28 loc) · 841 Bytes
/
docker-compose.yml
File metadata and controls
30 lines (28 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
services:
deemix:
image: ghcr.io/bambanah/deemix:latest
container_name: deemix
hostname: deemix
environment:
- PUID=1000
- PGID=1000
restart: unless-stopped
ports:
- 6595:6595
expose:
- 6595
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/deemix/config:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/deemix/downloads:/downloads
#networks:
# - proxy
#labels:
# - traefik.enable=true
# - traefik.docker.network=proxy
# - traefik.http.routers.deemix.rule=Host(`deemix.example.com`)
# - traefik.http.services.deemix.loadbalancer.server.port=6595
# # Optional part for traefik middlewares
# - traefik.http.routers.deemix.middlewares=local-ipwhitelist@file,authelia@docker
#networks:
# proxy:
# external: true