forked from fscorrupt/posterizarr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (30 loc) · 1.06 KB
/
docker-compose.yml
File metadata and controls
30 lines (30 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
services:
posterizarr:
hostname: "posterizarr"
container_name: "posterizarr"
environment:
- "TZ=Europe/Berlin"
- "TERM=xterm"
- "RUN_TIME=disabled"
# OPTIONAL: This tells uvicorn to run on port 9000 inside the container
#- APP_PORT=9000
# OPTIONAL: Disable UI
#- DISABLE_UI=true
#- ARR_WAIT_TIME=300 # OPTIONAL: Default is 300 seconds (5 minutes). This is the time Posterizarr will wait for the media server to be ready before starting its own startup process.
image: "ghcr.io/fscorrupt/posterizarr:latest"
restart: "unless-stopped"
user: "1000:1000"
ports:
- "8000:8000" # if you want to change the port inside container, also change APP_PORT env variable
networks:
- "proxy"
volumes:
- "/opt/appdata/posterizarr:/config:rw"
- "/opt/appdata/posterizarr/assets:/assets:rw"
- "/opt/appdata/posterizarr/assetsbackup:/assetsbackup:rw"
- "/opt/appdata/posterizarr/manualassets:/manualassets:rw"
networks:
proxy:
driver: bridge
external: true