Change any port changes in docker-compose files to use expose and the default port instead of 3001:3000 Any localhost limited ports changed to expose instead Add requestrr to caddyfile
24 lines
428 B
YAML
24 lines
428 B
YAML
name: overseerr
|
|
services:
|
|
app:
|
|
image: sctx/overseerr:latest
|
|
user: '115'
|
|
environment:
|
|
- LOG_LEVEL=debug
|
|
- TZ=America/Los_Angeles
|
|
networks:
|
|
- proxy-net
|
|
- default
|
|
ports:
|
|
- "5055:5055"
|
|
expose:
|
|
- "5055"
|
|
volumes:
|
|
- ./data:/app/config
|
|
- ./config/settings.json:/app/config/settings.json
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
proxy-net:
|
|
external: true
|