forked from ccarney16/pterodactyl-containers
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed SFTP Daemon; Added DB Check to Panel.
- Loading branch information
Showing
8 changed files
with
67 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,26 @@ | ||
### | ||
# Optional ProjectDependencies for Pterodactyl | ||
# Optional Project Dependencies for Pterodactyl | ||
# | ||
# This compose file provides the required dependencies for | ||
# Pterodactyl, such as MariaDB and Redis. | ||
## | ||
version: '2.1' | ||
services: | ||
## | ||
# --MariaDB-- | ||
# Required for the control panel to work. | ||
# Stores Server/User information | ||
## | ||
mysql: | ||
image: mariadb:10.4 | ||
env_file: ./conf.d/mariadb.env | ||
restart: always | ||
volumes: | ||
- ./data/db:/var/lib/mysql | ||
## | ||
# --Redis-- | ||
# Handles Session Data | ||
## | ||
redis: | ||
image: redis:alpine | ||
restart: always |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.