Last active
January 22, 2025 17:59
-
-
Save LucasPlacentino/69a86b303b956f903bbfe5e811c6de0f to your computer and use it in GitHub Desktop.
PufferPanel ARM64 docker-compose file
This file contains hidden or 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
version: '3' | |
services: | |
pufferpanel: | |
image: ghcr.io/oskardotglobal/pufferpanel:arm64 | |
#build: . | |
container_name: pufferpanel | |
restart: on-failure | |
environment: | |
- 'PUFFER_LOGS=/etc/pufferpanel/logs' # Location of your logs | |
- 'PUFFER_PANEL_DATABASE_DIALECT=sqlite3' # Databse type https://docs.pufferpanel.com/en/2.x/guides/database.html | |
- 'PUFFER_PANEL_DATABASE_URL=file:/etc/pufferpanel/pufferpanel.db?cache=shared' # SQL URL https://docs.pufferpanel.com/en/2.x/guides/da> | |
- 'PUFFER_DAEMON_DATA_CACHE=/var/lib/pufferpanel/cache' # Cache location within the container | |
- 'PUFFER_DAEMON_DATA_SERVERS=/var/lib/pufferpanel/servers' # Server data location within the container | |
- 'PUFFER_DAEMON_DATA_MODULES=/var/lib/pufferpanel/modules' # Location for Modules within the container | |
volumes: | |
- './etc/pufferpanel:/etc/pufferpanel' # Config/logs folder | |
- './var/lib/pufferpanel:/var/lib/pufferpanel' # Data folder | |
- '/var/run/docker.sock:/var/run/docker.sock' # Docker socket, leave this in. | |
ports: | |
- '8080:8080' # Panel port | |
- '5657:5657' # SFTP port | |
- '27015:27015' # Default SRCDS port | |
- '25565:25565' # Default Minecraft Java port |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
idk bro but if u find out plz tell