mirror of
https://github.com/abhilesh/self-hosted-docker-setups.git
synced 2026-06-28 23:05:55 +00:00
16 lines
343 B
YAML
16 lines
343 B
YAML
---
|
|
version: '3'
|
|
|
|
services:
|
|
overseerr:
|
|
image: sctx/overseerr:latest
|
|
container_name: overseerr
|
|
environment:
|
|
- LOG_LEVEL=debug
|
|
- TZ=America/Chicago # Change this
|
|
ports:
|
|
- 5055:5055
|
|
volumes:
|
|
- /home/pi/overseerr/config:/app/config
|
|
restart: unless-stopped
|