Commit bcc9d32f authored by Cameron Carney's avatar Cameron Carney

Fixed cronjob

parent d8a2c9b1
# Pterodactyl Panel Dockerfile #
__A Free and Open Source Agnostic Game Panel__
https://github.com/ccarney16/pterodactyl-panel-dockerfile
### Usage ###
---
Docker:
It is recommended to create a environment file and run the following command:
......@@ -17,11 +21,13 @@ Edit the environment section within docker-compose.yml then run `docker-compose
Please refer to ENVIRIONMENT.md for more information regarding environment variables.
### Docker Compose ###
---
This repo provides a template docker-compose.yml file for easier deployment for the panel. It is highly recommended to use over straight up Docker.
### Updating ###
---
__Minor Revisions & Configuration Changes:__
......@@ -40,19 +46,27 @@ __From v0.5.x to v0.6.x:__
### Entrypoint Commands ###
---
* p:start - Starts the panel webserver and requirements (We don't provide Memcached!).
* p:update - Updates the panel config using environment variables on runtime.
### SSL Encryption ###
---
SSL Encryption is an optional but recommended feature. Automatic SSL is provided by Let's Encrypt. When using the webroot feature in certbot (refer to docker-compose.yml), you should mount the .well-known directory created to `/var/www/html/.well-known` within the panel container.
### Contributing ###
---
All issues regarding Pterodactyl Panel/Node are to be reported to https://github.com/Pterodactyl/Panel/issues.
### Useful Links ###
---
Pterodactyl Project:
https://pterodactyl.io
......
......@@ -71,7 +71,7 @@ services:
- MAIL_DRIVER=mail
- MAIL_EMAIL=admin@localhost
- MAIL_FROM_NAME=Zyphinia Panel
- MAIL_FROM_NAME=Pterodactyl Panel
image: quay.io/ccarney/pterodactyl-panel:v0.6.0
ports:
- 80:80
......@@ -83,9 +83,20 @@ services:
# - ./certs:/certs
##
# PLACEHOLDER
# --------------------------
# If you plan on running the daemon on the same machine, uncomment the section below
##
# daemon:
# image: quay.io/parkervcp/pterodactyl-daemon:something
# image: quay.io/ccarney/pterodactyl-daemon:v0.4.0
# depends_on:
# - panel
# ports:
# - 8080:8080
# volumes:
# - /srv/daemon/config:/srv/daemon/config
# - /srv/daemon/packs:/srv/daemon/packs
# - /srv/daemon/scripts:/srv/daemon/scripts
# - /srv/daemon-data:/srv/daemon-data
#
# - /tmp/pterodactyl:/tmp/pterodactyl
#
# - /var/run/docker.sock:/var/run/docker.sock
\ No newline at end of file
* * * * * php /var/www/html/pterodactyl/artisan schedule:run >> /dev/null 2>&1
* * * * * php /var/www/html/artisan schedule:run >> /dev/null 2>&1
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment