Huntarr/docker-compose.yml

25 lines
579 B
YAML

version: '3.8'
services:
huntarr:
build: .
image: huntarr:latest
container_name: huntarr
restart: unless-stopped
ports:
# Change 8000 on the left to whatever port you want exposed on your host
- "8000:8000"
volumes:
# Mounts the local ./config folder to /config in the container to persist config.json
- ./config:/config
env_file:
- .env
environment:
- TZ=America/New_York
- CONFIG_PATH=/config/config.json
networks:
- mediaserver_default
networks:
mediaserver_default:
external: true