Added Seerr
This commit is contained in:
8
Seerr/.env.example
Normal file
8
Seerr/.env.example
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
# Time Zone where the application is operating
|
||||||
|
SEERR_TZ="America/Los_Angeles"
|
||||||
|
|
||||||
|
# Main interface port for accessing the application
|
||||||
|
SEERR_PORT="8055"
|
||||||
|
|
||||||
|
# Volume for persistent storage
|
||||||
|
SEERR_VOLUME="seerr_data"
|
||||||
17
Seerr/docker-compose-nfs.yaml
Normal file
17
Seerr/docker-compose-nfs.yaml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
services:
|
||||||
|
app:
|
||||||
|
image: seerr/seerr:latest
|
||||||
|
init: true
|
||||||
|
environment:
|
||||||
|
- LOG_LEVEL=debug
|
||||||
|
- TZ=${SEERR_TZ}
|
||||||
|
- PORT=${SEERR_PORT}
|
||||||
|
ports:
|
||||||
|
- ${SEERR_PORT}:5055
|
||||||
|
volumes:
|
||||||
|
- ${SEERR_VOLUME}:/app/config
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
${SEERR_VOLUME}:
|
||||||
|
external: true
|
||||||
13
Seerr/docker-compose.yaml
Normal file
13
Seerr/docker-compose.yaml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
services:
|
||||||
|
app:
|
||||||
|
image: seerr/seerr:latest
|
||||||
|
init: true
|
||||||
|
environment:
|
||||||
|
- LOG_LEVEL=debug
|
||||||
|
- TZ=America/Los_Angeles
|
||||||
|
- PORT=5055
|
||||||
|
ports:
|
||||||
|
- 5055:5055
|
||||||
|
volumes:
|
||||||
|
- /home/{username}/config/seerr:/app/config
|
||||||
|
restart: unless-stopped
|
||||||
Reference in New Issue
Block a user