Add deemix configs
This commit is contained in:
parent
ebb77cf81b
commit
3cb306dbe8
|
|
@ -2,6 +2,7 @@ APPDATA=/mnt/appdata
|
||||||
|
|
||||||
MEDIADIR=/mnt/media
|
MEDIADIR=/mnt/media
|
||||||
DOWNLOADS=/mnt/media/downloads
|
DOWNLOADS=/mnt/media/downloads
|
||||||
|
MUSIC_DOWNLOADS=/mnt/media/downloads
|
||||||
RECYCLEBIN=/mnt/media/recyclebin
|
RECYCLEBIN=/mnt/media/recyclebin
|
||||||
|
|
||||||
FB_DIR=/mnt
|
FB_DIR=/mnt
|
||||||
|
|
@ -11,6 +12,7 @@ HOST_IP="192.168.1.100"
|
||||||
WG_HOST=example.duckdns.org
|
WG_HOST=example.duckdns.org
|
||||||
WG_DNS=1.1.1.1
|
WG_DNS=1.1.1.1
|
||||||
|
|
||||||
|
DOMAIN=example.duckdns.org
|
||||||
LOCAL_DOMAIN=local.example.duckdns.org
|
LOCAL_DOMAIN=local.example.duckdns.org
|
||||||
GITEA_RUNNER_TOKEN=0123456789abcdef0123456789abcdef01234567
|
GITEA_RUNNER_TOKEN=0123456789abcdef0123456789abcdef01234567
|
||||||
GITEA_RUNNER_UID=1000
|
GITEA_RUNNER_UID=1000
|
||||||
|
|
|
||||||
16
deemix/docker-compose.yml
Normal file
16
deemix/docker-compose.yml
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
services:
|
||||||
|
deemix:
|
||||||
|
image: registry.gitlab.com/bockiii/deemix-docker:latest
|
||||||
|
container_name: deemix
|
||||||
|
hostname: deemix
|
||||||
|
volumes:
|
||||||
|
# Config
|
||||||
|
- $APPDATA/deemix:/config
|
||||||
|
# Downloads
|
||||||
|
- $MUSIC_DOWNLOADS:/downloads
|
||||||
|
environment:
|
||||||
|
PUID: $PUID
|
||||||
|
PGID: $PGID
|
||||||
|
ports:
|
||||||
|
- 6595:6595
|
||||||
|
restart: unless-stopped
|
||||||
Loading…
Reference in a new issue