Dockge installation should be made by curl and not wget #1102

Closed
opened 2026-02-04 23:06:07 +03:00 by OVERLORD · 4 comments
Owner

Originally created by @HoLengZai on GitHub (Jun 15, 2025).

In this discussions:
https://github.com/community-scripts/ProxmoxVE/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 -d

Dockge 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 -d
Originally created by @HoLengZai on GitHub (Jun 15, 2025). In this discussions: [https://github.com/community-scripts/ProxmoxVE/discussions/836](https://github.com/community-scripts/ProxmoxVE/discussions/836) > ### Add Dockge > - Install Docker Compose first > ```bash > 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 -d > ``` > Dockge 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: ```bash 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 -d ```
Author
Owner

@MickLesk commented on GitHub (Jun 15, 2025):

Why an issue? Link this under the discussion and done?

@MickLesk commented on GitHub (Jun 15, 2025): Why an issue? Link this under the discussion and done?
Author
Owner

@HoLengZai commented on GitHub (Jun 15, 2025):

I wish i could but the discussion is locked, so i cannot add anything.

@HoLengZai commented on GitHub (Jun 15, 2025): I wish i could but the discussion is locked, so i cannot add anything.
Author
Owner

@MickLesk commented on GitHub (Jun 15, 2025):

Alright. Dont See it. Added

@MickLesk commented on GitHub (Jun 15, 2025): Alright. Dont See it. Added
Author
Owner

@HoLengZai commented on GitHub (Jun 15, 2025):

@MickLesk, thank you.
sorry but i do believe that there is still an issue.

Image

Without --output option on the curl command, the compose.yaml won't be saved in /opt/dockge
Hence, either the curl command needs to be done after cd /opt/dockge or you add the --output /opt/dockge/compose.yaml on it

@HoLengZai commented on GitHub (Jun 15, 2025): @MickLesk, thank you. sorry but i do believe that there is still an issue. ![Image](https://github.com/user-attachments/assets/950a5cf3-7ce4-43c1-bb45-fce28f99486f) Without `--output` option on the `curl` command, the `compose.yaml` won't be saved in `/opt/dockge` Hence, either the `curl` command needs to be done after `cd /opt/dockge` or you add the `--output /opt/dockge/compose.yaml` on it
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ProxmoxVE#1102