fichiers docker

This commit is contained in:
2025-02-25 20:00:50 +01:00
parent 0d2840e87f
commit edba466018
30 changed files with 1304 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
services:
jackett:
image: lscr.io/linuxserver/jackett:latest
container_name: jackett
environment:
- PUID=${PUID:?err}
- PGID=${PGID:?err}
- TZ=${TIMEZONE:?err}
- AUTO_UPDATE=true #optional
# - RUN_OPTS= #optional
volumes:
- ${FOLDER_FOR_DATA:?err}/jackett/data:/config
- ${FOLDER_FOR_MEDIA:?err}:/downloads
ports:
- "${WEBUI_PORT_JACKET:?err}:9117"
restart: unless-stopped
networks:
default:
name: mediastack
external: true