45 lines
1020 B
YAML
45 lines
1020 B
YAML
version: '3'
|
|
|
|
services:
|
|
# jellyfin:
|
|
# container_name: jellyfin
|
|
# image: lscr.io/linuxserver/jellyfin:latest
|
|
# environment:
|
|
# - PUID=${PUID}
|
|
# - PGID=${PGID}
|
|
# - TZ=${TZ}
|
|
# - JELLYFIN_PublishedServerUrl=192.168.1.33
|
|
# ports:
|
|
# - 8096:8096
|
|
# restart: always
|
|
# volumes:
|
|
# - ${DOCKERCONFIGS}/jellyfin/config:/config
|
|
# - ${MEDIA_DIR}:/media
|
|
|
|
# jellyseerr:
|
|
# container_name: jellyseerr
|
|
# image: fallenbagel/jellyseerr:latest
|
|
# environment:
|
|
# - LOG_LEVEL=debug
|
|
# - TZ=${TZ}
|
|
# ports:
|
|
# - 5055:5055
|
|
# restart: always
|
|
# volumes:
|
|
# - ${DOCKERCONFIGS}/jellyseerr/config:/app/config
|
|
|
|
duplicati:
|
|
image: lscr.io/linuxserver/duplicati:latest
|
|
container_name: duplicati
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
- TZ=${TZ}
|
|
# - CLI_ARGS= #optional
|
|
ports:
|
|
- 8225:8200
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ${DOCKERCONFIGS}/duplicati/config:/config
|
|
- ${SAMSUNG_SSD_1TB}/dump:/source
|