Skip to content

Commit 5662ddd

Browse files
committed
Address comments
- Make sure that linuxserver is the endpoint - Restore BuildImage.yml env vars that are labeled "don't modify" to the original values
1 parent 1729859 commit 5662ddd

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/BuildImage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ on:
1010
required: false
1111

1212
env:
13-
GITHUB_REPO: "somewatson/docker-mods" #don't modify -- modified
14-
ENDPOINT: "somewatson/mods" #don't modify -- modified
13+
GITHUB_REPO: "linuxserver/docker-mods" #don't modify
14+
ENDPOINT: "linuxserver/mods" #don't modify
1515
BRANCH: "code-server-bat" #added
1616
BASEIMAGE: "code-server" #replaced
1717
MODNAME: "bat" #replaced

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ FROM scratch
55
LABEL maintainer="somewatson"
66

77
# copy local files
8-
COPY root/ /
8+
COPY root/ /

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ This mod adds [bat](https://github.com/sharkdp/bat) to code-server, to be instal
44

55
Bat is a cat(1) clone with syntax highlighting and Git integration.
66

7-
In code-server docker arguments, set an environment variable `DOCKER_MODS=somewatson/mods:code-server-bat`
7+
In code-server docker arguments, set an environment variable `DOCKER_MODS=linuxserver/mods:code-server-bat`
88

9-
If adding multiple mods, enter them in an array separated by `|`, such as `DOCKER_MODS=somewatson/mods:code-server-bat|linuxserver/mods:openssh-server-mod2`
9+
If adding multiple mods, enter them in an array separated by `|`, such as `DOCKER_MODS=linuxserver/mods:code-server-bat|linuxserver/mods:openssh-server-mod2`
1010

1111
### Bat-extras and Ripgrep
1212

root/etc/s6-overlay/s6-rc.d/init-mod-code-server-bat-add-package/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ if ! dpkg -s git >/dev/null 2>&1; then
2424
echo "git" >> /mod-repo-packages-to-install.list
2525
else
2626
echo "**** git already installed, skipping ****"
27-
fi
27+
fi
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/etc/s6-overlay/s6-rc.d/init-mod-code-server-bat-add-package/run
1+
/etc/s6-overlay/s6-rc.d/init-mod-code-server-bat-add-package/run
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/etc/s6-overlay/s6-rc.d/init-mod-code-server-bat-install/run
1+
/etc/s6-overlay/s6-rc.d/init-mod-code-server-bat-install/run

0 commit comments

Comments
 (0)