mirror of
https://github.com/FuzzyGrim/Yamtrack.git
synced 2026-03-03 02:47:03 +00:00
create docker setup
This commit is contained in:
27
docker-compose.yml
Normal file
27
docker-compose.yml
Normal 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:
|
||||
Reference in New Issue
Block a user