From 3cb306dbe8c4bdddf707c918180253c7e2e756e4 Mon Sep 17 00:00:00 2001 From: TheThomaas Date: Mon, 29 May 2023 11:22:09 +0200 Subject: [PATCH] Add deemix configs --- .env.example | 2 ++ deemix/docker-compose.yml | 16 ++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 deemix/docker-compose.yml diff --git a/.env.example b/.env.example index c12afb6..548a91d 100644 --- a/.env.example +++ b/.env.example @@ -2,6 +2,7 @@ APPDATA=/mnt/appdata MEDIADIR=/mnt/media DOWNLOADS=/mnt/media/downloads +MUSIC_DOWNLOADS=/mnt/media/downloads RECYCLEBIN=/mnt/media/recyclebin FB_DIR=/mnt @@ -11,6 +12,7 @@ HOST_IP="192.168.1.100" WG_HOST=example.duckdns.org WG_DNS=1.1.1.1 +DOMAIN=example.duckdns.org LOCAL_DOMAIN=local.example.duckdns.org GITEA_RUNNER_TOKEN=0123456789abcdef0123456789abcdef01234567 GITEA_RUNNER_UID=1000 diff --git a/deemix/docker-compose.yml b/deemix/docker-compose.yml new file mode 100644 index 0000000..dbb7d29 --- /dev/null +++ b/deemix/docker-compose.yml @@ -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 \ No newline at end of file