mirror of
https://github.com/FuzzyGrim/Yamtrack.git
synced 2026-06-28 23:06:09 +00:00
24 lines
534 B
YAML
24 lines
534 B
YAML
version: "3"
|
|
services:
|
|
yamtarr:
|
|
container_name: yamtarr
|
|
image: ghcr.io/fuzzygrim/yamtarr
|
|
restart: unless-stopped
|
|
environment:
|
|
- TMDB_API=TMDB_API_KEY
|
|
- MAL_API=MAL_API_KEY
|
|
- SECRET=long_random_string
|
|
# Change this to your domain or IP
|
|
- ALLOWED_HOSTS=192.168.x.x, yamtarr.domain.com
|
|
- PUID=1000
|
|
- PGID=1000
|
|
# - HTTPS_COOKIES=False
|
|
# - REGISTRATION=False
|
|
volumes:
|
|
- ./db:/app/db
|
|
- media:/app/media
|
|
ports:
|
|
- "8000:8000"
|
|
|
|
volumes:
|
|
media: |