Initial Commit
This commit is contained in:
parent
77cb86c742
commit
133705eaf5
2 changed files with 86 additions and 0 deletions
67
compose/media.yml
Normal file
67
compose/media.yml
Normal file
|
@ -0,0 +1,67 @@
|
||||||
|
version: '3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
plex:
|
||||||
|
image: lscr.io/linuxserver/plex:latest
|
||||||
|
container_name: plex
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "32400:32400/tcp"
|
||||||
|
- "3005:3005/tcp"
|
||||||
|
- "8324:8324/tcp"
|
||||||
|
- "32469:32469/tcp"
|
||||||
|
- "1900:1900/udp"
|
||||||
|
- "32410:32410/udp"
|
||||||
|
- "32412:32412/udp"
|
||||||
|
- "32413:32413/udp"
|
||||||
|
- "32414:32414/udp"
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Etc/UTC
|
||||||
|
- VERSION=docker
|
||||||
|
- PLEX_CLAIM=$PLEX_CLAIM
|
||||||
|
- ROOT_PATH=$ROOT_PATH
|
||||||
|
volumes:
|
||||||
|
- ${ROOT_PATH}/config:/config
|
||||||
|
- ${ROOT_PATH}/data/media:/media
|
||||||
|
|
||||||
|
sonarr:
|
||||||
|
image: lscr.io/linuxserver/sonarr:latest
|
||||||
|
container_name: sonarr
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "8989:7878/tcp"
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
volumes:
|
||||||
|
- ${ROOT_PATH}/config:/config
|
||||||
|
- ${ROOT_PATH}/data:/data
|
||||||
|
|
||||||
|
radarr:
|
||||||
|
image: lscr.io/linuxserver/radarr:latest
|
||||||
|
container_name: radar
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "7878:7878/tcp"
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
volumes:
|
||||||
|
- ${ROOT_PATH}/config:/config
|
||||||
|
- ${ROOT_PATH}/data:/data
|
||||||
|
|
||||||
|
sabnzbd:
|
||||||
|
image: lscr.io/linuxserver/sabnzbd:latest
|
||||||
|
container_name: sabnzbd
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "8080:8080/tcp"
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
volumes:
|
||||||
|
- ${ROOT_PATH}/config:/config
|
||||||
|
- ${ROOT_PATH}/data:/data
|
||||||
|
|
19
compose/minecraft.yml
Normal file
19
compose/minecraft.yml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
services:
|
||||||
|
mc:
|
||||||
|
image: itzg/minecraft-server
|
||||||
|
container_name: paper
|
||||||
|
environment:
|
||||||
|
EULA: "true"
|
||||||
|
TYPE: $TYPE
|
||||||
|
VIEW_DISTANCE: 10
|
||||||
|
MEMORY: $MEMORY
|
||||||
|
MOTD: $MOTD
|
||||||
|
SERVER_NAME: $SERVER_NAME
|
||||||
|
OPS: $OPS
|
||||||
|
SEED: "6256181764111482250"
|
||||||
|
PORT: $PORT
|
||||||
|
ports:
|
||||||
|
- "${PORT}:25565"
|
||||||
|
volumes:
|
||||||
|
- ${VOLUME}/volumes/himbomc:/data
|
||||||
|
restart: unless-stopped
|
Loading…
Add table
Reference in a new issue