Skip to content

Instantly share code, notes, and snippets.

@LucasPlacentino
Last active May 7, 2024 18:36
Show Gist options
  • Save LucasPlacentino/69a86b303b956f903bbfe5e811c6de0f to your computer and use it in GitHub Desktop.
Save LucasPlacentino/69a86b303b956f903bbfe5e811c6de0f to your computer and use it in GitHub Desktop.
PufferPanel ARM64 docker-compose file
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
@nomore1007
Copy link

It needs to be "services"

@LucasPlacentino
Copy link
Author

typo! thanks @nomore1007

@SteavenGamerYT
Copy link

how to create user pls

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment