Skip to content

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

@HoLengZai

Description

@HoLengZai

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 -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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions