Install Dockge (Basic Setup)
masterTo install Dockge using default settings (Stacks directory: /opt/stacks, Port: 5001), follow these steps:
- Create the necessary directories for your stacks and the Dockge configuration.
- Download the official
compose.yaml. - Start the server using Docker Compose.
Note: If you are using Podman, ensure podman-docker is installed. If using Docker Compose V1, use docker-compose up -d instead of docker compose up -d.
# Create directories that store your stacks and stores Dockge's stack
mkdir -p /opt/stacks /opt/dockge
cd /opt/dockge
# Download the compose.yaml
curl https://raw.githubusercontent.com/louislam/dockge/master/compose.yaml --output compose.yaml
# Start the server
docker compose up -d