2024-06-11 19:17:48 -04:00
|
|
|
x-common:
|
|
|
|
panel:
|
|
|
|
&panel-environment
|
2024-09-27 15:32:31 -04:00
|
|
|
APP_URL: "https://localhost" # can be set to 'http://localhost' on port 80 only
|
2024-06-16 13:20:20 -04:00
|
|
|
ADMIN_EMAIL: "USEYOUROWNEMAILHERE@example.com"
|
|
|
|
|
2024-09-27 15:32:31 -04:00
|
|
|
APP_DEBUG: "false"
|
2024-06-16 13:20:20 -04:00
|
|
|
APP_ENV: "production"
|
|
|
|
|
2024-06-11 19:17:48 -04:00
|
|
|
mail:
|
|
|
|
&mail-environment
|
|
|
|
MAIL_DRIVER: "log"
|
|
|
|
# MAIL_HOST: ""
|
|
|
|
# MAIL_PORT: ""
|
|
|
|
# MAIL_FROM: ""
|
|
|
|
# MAIL_USERNAME: ""
|
|
|
|
# MAIL_PASSWORD: ""
|
2025-03-03 14:41:00 -05:00
|
|
|
# MAIL_SCHEME: ""
|
2024-06-11 19:17:48 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# ------------------------------------------------------------------------------------------
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
|
|
|
services:
|
|
|
|
panel:
|
2024-06-27 15:59:07 -04:00
|
|
|
image: ghcr.io/pelican-dev/panel:latest
|
2025-01-23 01:01:14 -08:00
|
|
|
build: .
|
2024-06-27 14:56:49 -04:00
|
|
|
restart: always
|
2024-06-27 15:59:07 -04:00
|
|
|
networks:
|
|
|
|
- default
|
2024-06-27 14:56:49 -04:00
|
|
|
ports:
|
2024-06-27 15:59:07 -04:00
|
|
|
- "80:80"
|
2024-06-27 14:56:49 -04:00
|
|
|
- "443:443"
|
2024-06-27 15:59:07 -04:00
|
|
|
# - "9000:9000" # enable when not using caddy to be abel to reach php-fpm
|
2024-06-11 19:17:48 -04:00
|
|
|
extra_hosts:
|
2024-06-27 15:59:07 -04:00
|
|
|
- "host.docker.internal:host-gateway" # shows the panel on te internal docker network as well. usually '172.17.0.1'
|
2024-06-11 19:17:48 -04:00
|
|
|
volumes:
|
|
|
|
- pelican-data:/pelican-data
|
2024-06-27 14:56:49 -04:00
|
|
|
- pelican-logs:/var/www/html/storage/logs
|
2024-06-11 19:17:48 -04:00
|
|
|
environment:
|
|
|
|
<<: [*panel-environment, *mail-environment]
|
2024-06-16 13:20:35 -04:00
|
|
|
XDG_DATA_HOME: /pelican-data
|
2024-06-27 15:59:07 -04:00
|
|
|
# SKIP_CADDY: true # enable when not using caddy.
|
2024-06-11 19:17:48 -04:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
pelican-data:
|
2024-06-27 14:56:49 -04:00
|
|
|
pelican-logs:
|
2024-06-11 19:17:48 -04:00
|
|
|
|
|
|
|
networks:
|
|
|
|
default:
|
|
|
|
ipam:
|
|
|
|
config:
|
|
|
|
- subnet: 172.20.0.0/16
|