Skip to content

Commit b0778df

Browse files
committed
fix: Update install script URL to use GitHub for consistency and improve readability
1 parent 35c7e0c commit b0778df

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

container-image-builder/install-docker-for-debian.sh

100644100755
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
apt remove $(dpkg --get-selections docker.io docker-compose docker-doc podman-docker containerd runc | cut -f1)
3+
apt remove "$(dpkg --get-selections docker.io docker-compose docker-doc podman-docker containerd runc | cut -f1)"
44

55
# Add Docker's official GPG key:
66
apt update -y
@@ -9,6 +9,7 @@ install -m 0755 -d /etc/apt/keyrings
99
curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
1010
chmod a+r /etc/apt/keyrings/docker.asc
1111

12+
# shellcheck source=/dev/null
1213
# Add the repository to Apt sources:
1314
tee /etc/apt/sources.list.d/docker.sources <<EOF
1415
Types: deb

v2node/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
curl -fsSL https://github.com/LcJuves/podock/raw/refs/heads/dev/lcjuves/container-image-builder/install-docker-for-debian.sh | sh
33
```
44
```bash
5-
curl -fsSL https://gitlab.com/LcJuves/podock/-/raw/main/v2node/run-self-hosted-v2node-container.sh | sh
5+
curl -fsSL https://github.com/LcJuves/podock/raw/refs/heads/dev/lcjuves/v2node/run-self-hosted-v2node-container.sh | sh
66
```

0 commit comments

Comments
 (0)