-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Closed
Description
In this discussions:
#836
Add Dockge
- Install Docker Compose first
mkdir -p /opt/{dockge,stacks} wget -q -O /opt/dockge/compose.yaml https://raw.githubusercontent.com/louislam/dockge/master/compose.yaml cd /opt/dockge docker compose up -dDockge GUI, https:// IP:5001
It should be curl and not wget as wget is not installed by default on Debian 12 bookworm (Cloud Image). Original Dockge github repo official doc uses curl too. Using wget, you will get wget command not found.
So it should be like this:
mkdir -p /opt/{dockge,stacks}
curl -sSL https://raw.githubusercontent.com/louislam/dockge/master/compose.yaml --output /opt/dockge/compose.yaml
cd /opt/dockge
docker compose up -dMetadata
Metadata
Assignees
Labels
No labels