create docker setup

This commit is contained in:
FuzzyGrim
2023-01-21 23:57:46 +01:00
parent 90ccad7ae2
commit f5885f8469
64 changed files with 344 additions and 18 deletions

27
docker-compose.yml Normal file
View File

@@ -0,0 +1,27 @@
version: "3"
services:
yamtarr:
build:
context: .
environment:
- TMDB_API=API_KEY
- MAL_API=API_KEY
- SECRET=SECRET
volumes:
- static:/yamtarr/static
- media:/yamtarr/media
proxy:
build:
context: ./proxy
volumes:
- static:/vol/static
- media:/vol/media
ports:
- "8080:8080"
depends_on:
- yamtarr
volumes:
static:
media: