misc_pterodactyl-panel/docker-compose.example.yml

78 lines
2.2 KiB
YAML
Raw Normal View History

2020-11-14 21:10:11 +00:00
version: '3.8'
x-common:
database:
&db-environment
2020-11-14 21:10:11 +00:00
# Do not remove the "&db-password" from the end of the line below, it is important
# for Panel functionality.
MYSQL_PASSWORD: &db-password "CHANGE_ME"
2020-11-14 21:10:11 +00:00
MYSQL_ROOT_PASSWORD: "CHANGE_ME_TOO"
panel:
&panel-environment
APP_URL: "https://example.com"
2020-11-14 21:10:11 +00:00
# A list of valid timezones can be found here: http://php.net/manual/en/timezones.php
APP_TIMEZONE: "UTC"
APP_SERVICE_AUTHOR: "noreply@example.com"
# Uncomment the line below and set to a non-empty value if you want to use Let's Encrypt
# to generate an SSL certificate for the Panel.
# LE_EMAIL: ""
mail:
&mail-environment
2020-11-14 21:10:11 +00:00
MAIL_FROM: "noreply@example.com"
MAIL_DRIVER: "smtp"
MAIL_HOST: "mail"
MAIL_PORT: "1025"
MAIL_USERNAME: ""
MAIL_PASSWORD: ""
MAIL_ENCRYPTION: "true"
#
# ------------------------------------------------------------------------------------------
# DANGER ZONE BELOW
#
# The remainder of this file likely does not need to be changed. Please only make modifications
# below if you understand what you are doing.
#
2018-08-04 23:21:51 +00:00
services:
database:
2020-11-14 21:58:51 +00:00
image: library/mysql:8.0
restart: always
2020-11-14 21:58:51 +00:00
command: --default-authentication-plugin=mysql_native_password
2018-08-04 23:21:51 +00:00
volumes:
- "/srv/pterodactyl/database:/var/lib/mysql"
environment:
2020-11-14 21:10:11 +00:00
<<: *db-environment
MYSQL_DATABASE: "panel"
MYSQL_USER: "pterodactyl"
2018-08-04 23:21:51 +00:00
cache:
image: redis:alpine
restart: always
2018-08-04 23:21:51 +00:00
panel:
2020-11-15 04:46:37 +00:00
image: ghcr.io/pterodactyl/panel:latest
restart: always
2018-08-04 23:21:51 +00:00
ports:
- "80:80"
- "443:443"
links:
- database
- cache
volumes:
- "/srv/pterodactyl/var/:/app/var/"
2018-11-10 23:57:49 +00:00
- "/srv/pterodactyl/nginx/:/etc/nginx/conf.d/"
- "/srv/pterodactyl/certs/:/etc/letsencrypt/"
- "/srv/pterodactyl/logs/:/app/storage/logs"
2018-08-04 23:21:51 +00:00
environment:
<<: [*panel-environment, *mail-environment]
DB_PASSWORD: *db-password
APP_ENV: "production"
APP_ENVIRONMENT_ONLY: "false"
CACHE_DRIVER: "redis"
SESSION_DRIVER: "redis"
QUEUE_DRIVER: "redis"
REDIS_HOST: "cache"
DB_HOST: "database"
2018-08-14 04:01:25 +00:00
networks:
default:
ipam:
config:
- subnet: 172.20.0.0/16