initial commit
This commit is contained in:
25
game-servers/docker-compose.override.yml
Normal file
25
game-servers/docker-compose.override.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
services:
|
||||
pterodactyl-panel:
|
||||
labels:
|
||||
net.unraid.docker.managed: 'composeman'
|
||||
net.unraid.docker.icon: ''
|
||||
net.unraid.docker.webui: ''
|
||||
net.unraid.docker.shell: ''
|
||||
wings:
|
||||
labels:
|
||||
net.unraid.docker.managed: 'composeman'
|
||||
net.unraid.docker.icon: ''
|
||||
net.unraid.docker.webui: ''
|
||||
net.unraid.docker.shell: ''
|
||||
mariadb:
|
||||
labels:
|
||||
net.unraid.docker.managed: 'composeman'
|
||||
net.unraid.docker.icon: ''
|
||||
net.unraid.docker.webui: ''
|
||||
net.unraid.docker.shell: ''
|
||||
redis:
|
||||
labels:
|
||||
net.unraid.docker.managed: 'composeman'
|
||||
net.unraid.docker.icon: ''
|
||||
net.unraid.docker.webui: ''
|
||||
net.unraid.docker.shell: ''
|
||||
86
game-servers/docker-compose.yml
Normal file
86
game-servers/docker-compose.yml
Normal file
@@ -0,0 +1,86 @@
|
||||
services:
|
||||
pterodactyl-panel:
|
||||
image: ccarney16/pterodactyl-panel:latest
|
||||
container_name: pterodactyl-panel
|
||||
hostname: pterodactyl-panel
|
||||
ports:
|
||||
- "8001:80"
|
||||
volumes:
|
||||
- "/mnt/user/appdata/pterodactyl-panel/appdata/:/data" #Appdata of Container
|
||||
- "/mnt/user/pterodactyl-node:/etc/pterodactyl" #Appdata - #Where config.yml goes into.
|
||||
- "/mnt/user/pterodactyl-node/data:/mnt/user/pterodactyl-node/data" #Shared data between Panel and Node/Wings.
|
||||
- "/mnt/user/appdata/pterodactyl-panel/nginx/:/etc/nginx/conf.d/" #Nginx Config
|
||||
environment:
|
||||
APP_ENV: "production"
|
||||
APP_ENVIRONMENT_ONLY: false
|
||||
APP_SERVICE_AUTHOR: "tonitrus888@gmail.com"
|
||||
APP_URL: "https://panel.homecube.org"
|
||||
APP_TIMEZONE: "Europe/Vienna"
|
||||
CACHE_DRIVER: "redis" #DON'T TOUCH
|
||||
SESSION_DRIVER: "redis" #DON'T TOUCH
|
||||
QUEUE_DRIVER: "redis" #DON'T TOUCH
|
||||
REDIS_HOST: "redisdb"
|
||||
REDIS_PORT: 6379
|
||||
REDIS_USERNAME: "pterodactyl"
|
||||
REDIS_PASSWORD: "Unmoral-Spoof-Conjure-Gender-Precut8-Attempt"
|
||||
MAIL_FROM: "tonitrus888@gmail.com"
|
||||
MAIL_DRIVER: "smtp"
|
||||
MAIL_HOST: "smtp.gmail.com"
|
||||
MAIL_PORT: "587"
|
||||
MAIL_USERNAME: "tonitrus888@gmail.com"
|
||||
MAIL_PASSWORD: "orlg mofu ehap ehhp"
|
||||
MAIL_ENCRYPTION: true
|
||||
APP_DEBUG: true
|
||||
TRUSTED_PROXIES: "10.0.0.1"
|
||||
DB_HOST: "mariadb"
|
||||
DB_PORT: 3306
|
||||
DB_USERNAME: "pterodactyl-admin"
|
||||
DB_PASSWORD: "Raving-Swell-Lend3-Pliable-Semicolon-Providing"
|
||||
DB_DATABASE: "pterodactyl"
|
||||
labels:
|
||||
folder.view2: "Game Servers"
|
||||
|
||||
wings:
|
||||
image: ccarney16/pterodactyl-daemon:latest
|
||||
container_name: pterodactyl-wings
|
||||
hostname: pterodactyl-wings
|
||||
ports:
|
||||
- "2022:2022"
|
||||
- "8002:8080"
|
||||
tty: true
|
||||
environment:
|
||||
TZ: "Europe/Vienna"
|
||||
WINGS_UID: 1000
|
||||
WINGS_GID: 1000
|
||||
WINGS_USERNAME: USER
|
||||
volumes:
|
||||
- "/var/run/docker.sock:/var/run/docker.sock" #docker.sock
|
||||
- "/mnt/user/pterodactyl-node/data:/mnt/user/pterodactyl-node/data" #Shared data between Panel and Node/Wings.
|
||||
- "/mnt/user/pterodactyl-node:/etc/pterodactyl" #Appdata - #Where config.yml goes into.
|
||||
- "/mnt/user/pterodactyl-node/tmp:/mnt/user/pterodactyl-node/tmp" #tmp
|
||||
labels:
|
||||
folder.view2: "Game Servers"
|
||||
|
||||
mariadb:
|
||||
image: mariadb
|
||||
container_name: mariadb
|
||||
environment:
|
||||
MARIADB_ROOT_PASSWORD: asdkljflkj§/&$%("§/%(njdfklajseslif)")
|
||||
volumes:
|
||||
- /mnt/user/database/mariadb:/var/lib/mysql
|
||||
labels:
|
||||
folder.view2: "Databases"
|
||||
|
||||
redis:
|
||||
image: redis:6.2-alpine
|
||||
container_name: redisdb
|
||||
command: >
|
||||
redis-server
|
||||
--aclfile /usr/local/etc/redis/users.acl
|
||||
--save 20 1
|
||||
--loglevel warning
|
||||
volumes:
|
||||
- /mnt/user/database/redis/users.acl:/usr/local/etc/redis/users.acl
|
||||
- /mnt/user/database/redis:/data
|
||||
labels:
|
||||
folder.view2: "Databases"
|
||||
1
game-servers/name
Normal file
1
game-servers/name
Normal file
@@ -0,0 +1 @@
|
||||
game-servers
|
||||
Reference in New Issue
Block a user