separated folders
This commit is contained in:
154
mixed/compose.yml
Executable file
154
mixed/compose.yml
Executable file
@@ -0,0 +1,154 @@
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
jellyseerr:
|
||||
container_name: jellyseerr
|
||||
image: fallenbagel/jellyseerr:latest
|
||||
environment:
|
||||
- LOG_LEVEL=info
|
||||
- TZ=${TZ}
|
||||
networks:
|
||||
- reverse-proxy
|
||||
ports:
|
||||
- 5056:5055
|
||||
restart: always
|
||||
volumes:
|
||||
- ${DOCKER_CONFIGS}/jellyseerr/config:/app/config
|
||||
|
||||
kavita:
|
||||
container_name: kavita
|
||||
image: lscr.io/linuxserver/kavita:latest
|
||||
networks:
|
||||
- reverse-proxy
|
||||
ports:
|
||||
- 5002:5000
|
||||
restart: always
|
||||
volumes:
|
||||
- ${STORAGE_DIR}/Books:/data
|
||||
- ${DOCKER_CONFIGS}/kavita/config:/config
|
||||
|
||||
metube:
|
||||
container_name: metube
|
||||
hostname: metube
|
||||
image: alexta69/metube
|
||||
environment:
|
||||
- PUID=${PUID}
|
||||
- PGID=${PGID}
|
||||
- CREATE_CUSTOM_DIRS=true
|
||||
- DARK_MODE=false
|
||||
networks:
|
||||
- reverse-proxy
|
||||
ports:
|
||||
- 8082:8081
|
||||
restart: always
|
||||
volumes:
|
||||
- ${MEDIA_DIR}/videos:/downloads
|
||||
|
||||
monitorr:
|
||||
container_name: monitorr
|
||||
image: monitorr/monitorr:latest
|
||||
environment:
|
||||
- PGID=${PGID}
|
||||
- PUID=${PUID}
|
||||
- TZ=${TZ}
|
||||
networks:
|
||||
- reverse-proxy
|
||||
ports:
|
||||
- 8084:80/tcp
|
||||
restart: always
|
||||
volumes:
|
||||
- ${MEDIA_DIR}:/HD:ro
|
||||
- ${DOCKER_CONFIGS}/monitorr/app:/app
|
||||
- ${DOCKER_CONFIGS}/monitorr/config:/config
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
|
||||
mstream:
|
||||
container_name: mstream
|
||||
image: lscr.io/linuxserver/mstream:latest
|
||||
environment:
|
||||
- PUID=${PUID}
|
||||
- PGID=${PGID}
|
||||
- TZ=${TZ}
|
||||
networks:
|
||||
- reverse-proxy
|
||||
ports:
|
||||
- 3001:3000
|
||||
restart: always
|
||||
volumes:
|
||||
- ${DOCKER_CONFIGS}/mstream:/config
|
||||
- ${STORAGE_DIR}/Music:/music
|
||||
|
||||
nutcase:
|
||||
container_name: NUTCase
|
||||
image: kronos443/nutcase:latest
|
||||
environment:
|
||||
- TZ=${TZ}
|
||||
networks:
|
||||
- reverse-proxy
|
||||
ports:
|
||||
- 9995:9995
|
||||
restart: always
|
||||
volumes:
|
||||
- ${DOCKER_CONFIGS}/nutcase/config:/config
|
||||
|
||||
organizr:
|
||||
container_name: organizr
|
||||
image: organizr/organizr:latest
|
||||
environment:
|
||||
- PGID=${PGID}
|
||||
- PUID=${PUID}
|
||||
- FPM=true
|
||||
networks:
|
||||
- reverse-proxy
|
||||
ports:
|
||||
- 8085:80/tcp
|
||||
restart: always
|
||||
volumes:
|
||||
- ${DOCKER_CONFIGS}/organizr/config:/config
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
|
||||
peanut:
|
||||
container_name: peanut
|
||||
image: brandawg93/peanut:latest
|
||||
environment:
|
||||
- NUT_HOST=192.168.1.41
|
||||
- NUT_PORT=3493
|
||||
- WEB_PORT=8586
|
||||
networks:
|
||||
- reverse-proxy
|
||||
ports:
|
||||
- 8586:8080
|
||||
restart: unless-stopped
|
||||
|
||||
s-pdf:
|
||||
container_name: spdf
|
||||
image: frooodle/s-pdf
|
||||
networks:
|
||||
- reverse-proxy
|
||||
ports:
|
||||
- 8086:8080
|
||||
restart: always
|
||||
|
||||
syncthing:
|
||||
container_name: syncthing
|
||||
image: lscr.io/linuxserver/syncthing:latest
|
||||
environment:
|
||||
- PUID=${PUID}
|
||||
- PGID=${PGID}
|
||||
- TZ=${TZ}
|
||||
networks:
|
||||
- reverse-proxy
|
||||
ports:
|
||||
- 8384:8384
|
||||
- 22000:22000/tcp
|
||||
- 22000:22000/udp
|
||||
- 21027:21027/udp
|
||||
restart: always
|
||||
volumes:
|
||||
- ${DOCKER_CONFIGS}/syncthing/config:/config
|
||||
- ${STORAGE_DIR}:/storage
|
||||
|
||||
networks:
|
||||
reverse-proxy:
|
||||
name: reverse-proxy
|
||||
external: true
|
||||
Reference in New Issue
Block a user