mirror of
https://github.com/linuxserver/docker-code-server
synced 2025-06-26 18:27:40 +00:00
Compare commits
3 Commits
3.2.0-ls41
...
v3.3.1-ls4
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7fcde50bab | ||
|
|
c124f2c48d | ||
|
|
9137da0f15 |
34
Dockerfile
34
Dockerfile
@@ -11,28 +11,44 @@ LABEL maintainer="aptalca"
|
|||||||
ENV HOME="/config"
|
ENV HOME="/config"
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
echo "**** install dependencies ****" && \
|
echo "**** install node repo ****" && \
|
||||||
apt-get update && \
|
apt-get update && \
|
||||||
|
apt-get install -y \
|
||||||
|
gnupg && \
|
||||||
|
curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \
|
||||||
|
echo 'deb https://deb.nodesource.com/node_12.x bionic main' \
|
||||||
|
> /etc/apt/sources.list.d/nodesource.list && \
|
||||||
|
echo "**** install build dependencies ****" && \
|
||||||
|
apt-get update && \
|
||||||
|
apt-get install -y \
|
||||||
|
build-essential \
|
||||||
|
libx11-dev \
|
||||||
|
libxkbfile-dev \
|
||||||
|
libsecret-1-dev \
|
||||||
|
pkg-config && \
|
||||||
|
echo "**** install runtime dependencies ****" && \
|
||||||
apt-get install -y \
|
apt-get install -y \
|
||||||
git \
|
git \
|
||||||
jq \
|
jq \
|
||||||
nano \
|
nano \
|
||||||
net-tools \
|
net-tools \
|
||||||
|
nodejs \
|
||||||
sudo && \
|
sudo && \
|
||||||
echo "**** install code-server ****" && \
|
echo "**** install code-server ****" && \
|
||||||
if [ -z ${CODE_RELEASE+x} ]; then \
|
if [ -z ${CODE_RELEASE+x} ]; then \
|
||||||
CODE_RELEASE=$(curl -sX GET "https://api.github.com/repos/cdr/code-server/releases/latest" \
|
CODE_RELEASE=$(curl -sX GET "https://api.github.com/repos/cdr/code-server/releases/latest" \
|
||||||
| awk '/tag_name/{print $4;exit}' FS='[""]'); \
|
| awk '/tag_name/{print $4;exit}' FS='[""]'); \
|
||||||
fi && \
|
fi && \
|
||||||
CODE_URL=$(curl -sX GET "https://api.github.com/repos/cdr/code-server/releases/tags/${CODE_RELEASE}" \
|
CODE_VERSION=$(echo "$CODE_RELEASE" | awk '{print substr($1,2); }') && \
|
||||||
| jq -r '.assets[] | select(.browser_download_url | contains("linux-x86_64")) | .browser_download_url') && \
|
npm install --unsafe-perm -g code-server@"$CODE_VERSION" && \
|
||||||
mkdir -p /app/code-server && \
|
|
||||||
curl -o \
|
|
||||||
/tmp/code.tar.gz -L \
|
|
||||||
"${CODE_URL}" && \
|
|
||||||
tar xzf /tmp/code.tar.gz -C \
|
|
||||||
/app/code-server --strip-components=1 && \
|
|
||||||
echo "**** clean up ****" && \
|
echo "**** clean up ****" && \
|
||||||
|
apt-get purge --auto-remove -y \
|
||||||
|
build-essential \
|
||||||
|
libx11-dev \
|
||||||
|
libxkbfile-dev \
|
||||||
|
libsecret-1-dev \
|
||||||
|
pkg-config && \
|
||||||
|
apt-get clean && \
|
||||||
rm -rf \
|
rm -rf \
|
||||||
/tmp/* \
|
/tmp/* \
|
||||||
/var/lib/apt/lists/* \
|
/var/lib/apt/lists/* \
|
||||||
|
|||||||
61
Dockerfile.aarch64
Normal file
61
Dockerfile.aarch64
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
FROM lsiobase/ubuntu:arm64v8-bionic
|
||||||
|
|
||||||
|
# set version label
|
||||||
|
ARG BUILD_DATE
|
||||||
|
ARG VERSION
|
||||||
|
ARG CODE_RELEASE
|
||||||
|
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
||||||
|
LABEL maintainer="aptalca"
|
||||||
|
|
||||||
|
# environment settings
|
||||||
|
ENV HOME="/config"
|
||||||
|
|
||||||
|
RUN \
|
||||||
|
echo "**** install node repo ****" && \
|
||||||
|
apt-get update && \
|
||||||
|
apt-get install -y \
|
||||||
|
gnupg && \
|
||||||
|
curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \
|
||||||
|
echo 'deb https://deb.nodesource.com/node_12.x bionic main' \
|
||||||
|
> /etc/apt/sources.list.d/nodesource.list && \
|
||||||
|
echo "**** install build dependencies ****" && \
|
||||||
|
apt-get update && \
|
||||||
|
apt-get install -y \
|
||||||
|
build-essential \
|
||||||
|
libx11-dev \
|
||||||
|
libxkbfile-dev \
|
||||||
|
libsecret-1-dev \
|
||||||
|
pkg-config && \
|
||||||
|
echo "**** install runtime dependencies ****" && \
|
||||||
|
apt-get install -y \
|
||||||
|
git \
|
||||||
|
jq \
|
||||||
|
nano \
|
||||||
|
net-tools \
|
||||||
|
nodejs \
|
||||||
|
sudo && \
|
||||||
|
echo "**** install code-server ****" && \
|
||||||
|
if [ -z ${CODE_RELEASE+x} ]; then \
|
||||||
|
CODE_RELEASE=$(curl -sX GET "https://api.github.com/repos/cdr/code-server/releases/latest" \
|
||||||
|
| awk '/tag_name/{print $4;exit}' FS='[""]'); \
|
||||||
|
fi && \
|
||||||
|
CODE_VERSION=$(echo "$CODE_RELEASE" | awk '{print substr($1,2); }') && \
|
||||||
|
npm install --unsafe-perm -g code-server@"$CODE_VERSION" && \
|
||||||
|
echo "**** clean up ****" && \
|
||||||
|
apt-get purge --auto-remove -y \
|
||||||
|
build-essential \
|
||||||
|
libx11-dev \
|
||||||
|
libxkbfile-dev \
|
||||||
|
libsecret-1-dev \
|
||||||
|
pkg-config && \
|
||||||
|
apt-get clean && \
|
||||||
|
rm -rf \
|
||||||
|
/tmp/* \
|
||||||
|
/var/lib/apt/lists/* \
|
||||||
|
/var/tmp/*
|
||||||
|
|
||||||
|
# add local files
|
||||||
|
COPY /root /
|
||||||
|
|
||||||
|
# ports and volumes
|
||||||
|
EXPOSE 8443
|
||||||
61
Dockerfile.armhf
Normal file
61
Dockerfile.armhf
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
FROM lsiobase/ubuntu:arm32v7-bionic
|
||||||
|
|
||||||
|
# set version label
|
||||||
|
ARG BUILD_DATE
|
||||||
|
ARG VERSION
|
||||||
|
ARG CODE_RELEASE
|
||||||
|
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
||||||
|
LABEL maintainer="aptalca"
|
||||||
|
|
||||||
|
# environment settings
|
||||||
|
ENV HOME="/config"
|
||||||
|
|
||||||
|
RUN \
|
||||||
|
echo "**** install node repo ****" && \
|
||||||
|
apt-get update && \
|
||||||
|
apt-get install -y \
|
||||||
|
gnupg && \
|
||||||
|
curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \
|
||||||
|
echo 'deb https://deb.nodesource.com/node_12.x bionic main' \
|
||||||
|
> /etc/apt/sources.list.d/nodesource.list && \
|
||||||
|
echo "**** install build dependencies ****" && \
|
||||||
|
apt-get update && \
|
||||||
|
apt-get install -y \
|
||||||
|
build-essential \
|
||||||
|
libx11-dev \
|
||||||
|
libxkbfile-dev \
|
||||||
|
libsecret-1-dev \
|
||||||
|
pkg-config && \
|
||||||
|
echo "**** install runtime dependencies ****" && \
|
||||||
|
apt-get install -y \
|
||||||
|
git \
|
||||||
|
jq \
|
||||||
|
nano \
|
||||||
|
net-tools \
|
||||||
|
nodejs \
|
||||||
|
sudo && \
|
||||||
|
echo "**** install code-server ****" && \
|
||||||
|
if [ -z ${CODE_RELEASE+x} ]; then \
|
||||||
|
CODE_RELEASE=$(curl -sX GET "https://api.github.com/repos/cdr/code-server/releases/latest" \
|
||||||
|
| awk '/tag_name/{print $4;exit}' FS='[""]'); \
|
||||||
|
fi && \
|
||||||
|
CODE_VERSION=$(echo "$CODE_RELEASE" | awk '{print substr($1,2); }') && \
|
||||||
|
npm install --unsafe-perm -g code-server@"$CODE_VERSION" && \
|
||||||
|
echo "**** clean up ****" && \
|
||||||
|
apt-get purge --auto-remove -y \
|
||||||
|
build-essential \
|
||||||
|
libx11-dev \
|
||||||
|
libxkbfile-dev \
|
||||||
|
libsecret-1-dev \
|
||||||
|
pkg-config && \
|
||||||
|
apt-get clean && \
|
||||||
|
rm -rf \
|
||||||
|
/tmp/* \
|
||||||
|
/var/lib/apt/lists/* \
|
||||||
|
/var/tmp/*
|
||||||
|
|
||||||
|
# add local files
|
||||||
|
COPY /root /
|
||||||
|
|
||||||
|
# ports and volumes
|
||||||
|
EXPOSE 8443
|
||||||
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@@ -27,7 +27,7 @@ pipeline {
|
|||||||
DEV_DOCKERHUB_IMAGE = 'lsiodev/code-server'
|
DEV_DOCKERHUB_IMAGE = 'lsiodev/code-server'
|
||||||
PR_DOCKERHUB_IMAGE = 'lspipepr/code-server'
|
PR_DOCKERHUB_IMAGE = 'lspipepr/code-server'
|
||||||
DIST_IMAGE = 'ubuntu'
|
DIST_IMAGE = 'ubuntu'
|
||||||
MULTIARCH='false'
|
MULTIARCH='true'
|
||||||
CI='true'
|
CI='true'
|
||||||
CI_WEB='true'
|
CI_WEB='true'
|
||||||
CI_PORT='8443'
|
CI_PORT='8443'
|
||||||
|
|||||||
@@ -57,6 +57,8 @@ The architectures supported by this image are:
|
|||||||
| Architecture | Tag |
|
| Architecture | Tag |
|
||||||
| :----: | --- |
|
| :----: | --- |
|
||||||
| x86-64 | amd64-latest |
|
| x86-64 | amd64-latest |
|
||||||
|
| arm64 | arm64v8-latest |
|
||||||
|
| armhf | arm32v7-latest |
|
||||||
|
|
||||||
## Version Tags
|
## Version Tags
|
||||||
|
|
||||||
@@ -234,6 +236,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
|
|||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
|
|
||||||
|
* **18.05.20:** - Switch to multi-arch images, install via npm.
|
||||||
* **29.04.20:** - Update start arguments.
|
* **29.04.20:** - Update start arguments.
|
||||||
* **01.04.20:** - Structural changes required for v3.
|
* **01.04.20:** - Structural changes required for v3.
|
||||||
* **17.01.20:** - Fix artifact url retrieval from github.
|
* **17.01.20:** - Fix artifact url retrieval from github.
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ repo_vars:
|
|||||||
- DEV_DOCKERHUB_IMAGE = 'lsiodev/code-server'
|
- DEV_DOCKERHUB_IMAGE = 'lsiodev/code-server'
|
||||||
- PR_DOCKERHUB_IMAGE = 'lspipepr/code-server'
|
- PR_DOCKERHUB_IMAGE = 'lspipepr/code-server'
|
||||||
- DIST_IMAGE = 'ubuntu'
|
- DIST_IMAGE = 'ubuntu'
|
||||||
- MULTIARCH='false'
|
- MULTIARCH='true'
|
||||||
- CI='true'
|
- CI='true'
|
||||||
- CI_WEB='true'
|
- CI_WEB='true'
|
||||||
- CI_PORT='8443'
|
- CI_PORT='8443'
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
adduser3.116ubuntu1
|
adduser3.116ubuntu1
|
||||||
apt1.6.12
|
apt1.6.12ubuntu0.1
|
||||||
apt-utils1.6.12
|
apt-utils1.6.12ubuntu0.1
|
||||||
base-files10.1ubuntu2.8
|
base-files10.1ubuntu2.8
|
||||||
base-passwd3.5.44
|
base-passwd3.5.44
|
||||||
bash4.4.18-2ubuntu1.2
|
bash4.4.18-2ubuntu1.2
|
||||||
@@ -13,14 +13,25 @@ dash0.5.8-2.10
|
|||||||
debconf1.5.66ubuntu1
|
debconf1.5.66ubuntu1
|
||||||
debianutils4.8.4
|
debianutils4.8.4
|
||||||
diffutils1:3.6-1
|
diffutils1:3.6-1
|
||||||
|
dirmngr2.2.4-1ubuntu1.2
|
||||||
dpkg1.19.0.5ubuntu2.3
|
dpkg1.19.0.5ubuntu2.3
|
||||||
e2fsprogs1.44.1-1ubuntu1.3
|
e2fsprogs1.44.1-1ubuntu1.3
|
||||||
fdisk2.31.1-0.4ubuntu3.6
|
fdisk2.31.1-0.4ubuntu3.6
|
||||||
|
file1:5.32-2ubuntu0.4
|
||||||
findutils4.6.0+git+20170828-2
|
findutils4.6.0+git+20170828-2
|
||||||
gcc-8-base8.4.0-1ubuntu1~18.04
|
gcc-8-base8.4.0-1ubuntu1~18.04
|
||||||
git1:2.17.1-1ubuntu0.7
|
git1:2.17.1-1ubuntu0.7
|
||||||
git-man1:2.17.1-1ubuntu0.7
|
git-man1:2.17.1-1ubuntu0.7
|
||||||
|
gnupg2.2.4-1ubuntu1.2
|
||||||
|
gnupg-l10n2.2.4-1ubuntu1.2
|
||||||
|
gnupg-utils2.2.4-1ubuntu1.2
|
||||||
|
gpg2.2.4-1ubuntu1.2
|
||||||
|
gpg-agent2.2.4-1ubuntu1.2
|
||||||
|
gpgconf2.2.4-1ubuntu1.2
|
||||||
|
gpgsm2.2.4-1ubuntu1.2
|
||||||
gpgv2.2.4-1ubuntu1.2
|
gpgv2.2.4-1ubuntu1.2
|
||||||
|
gpg-wks-client2.2.4-1ubuntu1.2
|
||||||
|
gpg-wks-server2.2.4-1ubuntu1.2
|
||||||
grep3.1-2build1
|
grep3.1-2build1
|
||||||
gzip1.6-5ubuntu1
|
gzip1.6-5ubuntu1
|
||||||
hostname3.20
|
hostname3.20
|
||||||
@@ -29,9 +40,10 @@ jq1.5+dfsg-2
|
|||||||
krb5-locales1.16-2ubuntu0.1
|
krb5-locales1.16-2ubuntu0.1
|
||||||
less487-0.1
|
less487-0.1
|
||||||
libacl12.2.52-3build1
|
libacl12.2.52-3build1
|
||||||
libapt-inst2.01.6.12
|
libapt-inst2.01.6.12ubuntu0.1
|
||||||
libapt-pkg5.01.6.12
|
libapt-pkg5.01.6.12ubuntu0.1
|
||||||
libasn1-8-heimdal7.5.0+dfsg-1
|
libasn1-8-heimdal7.5.0+dfsg-1
|
||||||
|
libassuan02.5.1-2
|
||||||
libattr11:2.4.47-2build1
|
libattr11:2.4.47-2build1
|
||||||
libaudit11:2.8.2-1ubuntu1
|
libaudit11:2.8.2-1ubuntu1
|
||||||
libaudit-common1:2.8.2-1ubuntu1
|
libaudit-common1:2.8.2-1ubuntu1
|
||||||
@@ -73,15 +85,19 @@ libkeyutils11.5.9-9.2ubuntu2
|
|||||||
libkrb5-26-heimdal7.5.0+dfsg-1
|
libkrb5-26-heimdal7.5.0+dfsg-1
|
||||||
libkrb5-31.16-2ubuntu0.1
|
libkrb5-31.16-2ubuntu0.1
|
||||||
libkrb5support01.16-2ubuntu0.1
|
libkrb5support01.16-2ubuntu0.1
|
||||||
|
libksba81.3.5-2
|
||||||
libldap-2.4-22.4.45+dfsg-1ubuntu1.5
|
libldap-2.4-22.4.45+dfsg-1ubuntu1.5
|
||||||
libldap-common2.4.45+dfsg-1ubuntu1.5
|
libldap-common2.4.45+dfsg-1ubuntu1.5
|
||||||
liblz4-10.0~r131-2ubuntu3
|
liblz4-10.0~r131-2ubuntu3
|
||||||
liblzma55.2.2-1.3
|
liblzma55.2.2-1.3
|
||||||
|
libmagic11:5.32-2ubuntu0.4
|
||||||
|
libmagic-mgc1:5.32-2ubuntu0.4
|
||||||
libmount12.31.1-0.4ubuntu3.6
|
libmount12.31.1-0.4ubuntu3.6
|
||||||
libncurses56.1-1ubuntu1.18.04
|
libncurses56.1-1ubuntu1.18.04
|
||||||
libncursesw56.1-1ubuntu1.18.04
|
libncursesw56.1-1ubuntu1.18.04
|
||||||
libnettle63.4-1
|
libnettle63.4-1
|
||||||
libnghttp2-141.30.0-1ubuntu1
|
libnghttp2-141.30.0-1ubuntu1
|
||||||
|
libnpth01.5-3
|
||||||
libonig46.7.0-1
|
libonig46.7.0-1
|
||||||
libp11-kit00.23.9-2
|
libp11-kit00.23.9-2
|
||||||
libpam0g1.1.8-3.6ubuntu2.18.04.1
|
libpam0g1.1.8-3.6ubuntu2.18.04.1
|
||||||
@@ -92,6 +108,10 @@ libpcre32:8.39-9
|
|||||||
libperl5.265.26.1-6ubuntu0.3
|
libperl5.265.26.1-6ubuntu0.3
|
||||||
libprocps62:3.3.12-3ubuntu1.2
|
libprocps62:3.3.12-3ubuntu1.2
|
||||||
libpsl50.19.1-5build1
|
libpsl50.19.1-5build1
|
||||||
|
libpython2.7-minimal2.7.17-1~18.04ubuntu1
|
||||||
|
libpython2.7-stdlib2.7.17-1~18.04ubuntu1
|
||||||
|
libpython-stdlib2.7.15~rc1-1
|
||||||
|
libreadline77.0-3
|
||||||
libroken18-heimdal7.5.0+dfsg-1
|
libroken18-heimdal7.5.0+dfsg-1
|
||||||
librtmp12.4+20151223.gitfa8646d.1-1
|
librtmp12.4+20151223.gitfa8646d.1-1
|
||||||
libsasl2-22.1.27~101-g0780600+dfsg-3ubuntu2.1
|
libsasl2-22.1.27~101-g0780600+dfsg-3ubuntu2.1
|
||||||
@@ -127,6 +147,7 @@ locales2.27-3ubuntu1
|
|||||||
login1:4.5-1ubuntu2
|
login1:4.5-1ubuntu2
|
||||||
lsb-base9.20170808ubuntu1
|
lsb-base9.20170808ubuntu1
|
||||||
mawk1.3.3-17ubuntu3
|
mawk1.3.3-17ubuntu3
|
||||||
|
mime-support3.60ubuntu1
|
||||||
mount2.31.1-0.4ubuntu3.6
|
mount2.31.1-0.4ubuntu3.6
|
||||||
multiarch-support2.27-3ubuntu1
|
multiarch-support2.27-3ubuntu1
|
||||||
nano2.9.3-2
|
nano2.9.3-2
|
||||||
@@ -134,6 +155,7 @@ ncurses-base6.1-1ubuntu1.18.04
|
|||||||
ncurses-bin6.1-1ubuntu1.18.04
|
ncurses-bin6.1-1ubuntu1.18.04
|
||||||
netbase5.4
|
netbase5.4
|
||||||
net-tools1.60+git20161116.90da8a0-1ubuntu1
|
net-tools1.60+git20161116.90da8a0-1ubuntu1
|
||||||
|
nodejs12.16.3-1nodesource1
|
||||||
openssh-client1:7.6p1-4ubuntu0.3
|
openssh-client1:7.6p1-4ubuntu0.3
|
||||||
openssl1.1.1-1ubuntu2.1~18.04.5
|
openssl1.1.1-1ubuntu2.1~18.04.5
|
||||||
passwd1:4.5-1ubuntu2
|
passwd1:4.5-1ubuntu2
|
||||||
@@ -141,15 +163,22 @@ patch2.7.6-2ubuntu1.1
|
|||||||
perl5.26.1-6ubuntu0.3
|
perl5.26.1-6ubuntu0.3
|
||||||
perl-base5.26.1-6ubuntu0.3
|
perl-base5.26.1-6ubuntu0.3
|
||||||
perl-modules-5.265.26.1-6ubuntu0.3
|
perl-modules-5.265.26.1-6ubuntu0.3
|
||||||
|
pinentry-curses1.1.0-1
|
||||||
procps2:3.3.12-3ubuntu1.2
|
procps2:3.3.12-3ubuntu1.2
|
||||||
publicsuffix20180223.1310-1
|
publicsuffix20180223.1310-1
|
||||||
|
python2.7.15~rc1-1
|
||||||
|
python2.72.7.17-1~18.04ubuntu1
|
||||||
|
python2.7-minimal2.7.17-1~18.04ubuntu1
|
||||||
|
python-minimal2.7.15~rc1-1
|
||||||
|
readline-common7.0-3
|
||||||
sed4.4-2
|
sed4.4-2
|
||||||
sensible-utils0.0.12
|
sensible-utils0.0.12
|
||||||
sudo1.8.21p2-3ubuntu1.2
|
sudo1.8.21p2-3ubuntu1.2
|
||||||
sysvinit-utils2.88dsf-59.10ubuntu1
|
sysvinit-utils2.88dsf-59.10ubuntu1
|
||||||
tar1.29b-2ubuntu0.1
|
tar1.29b-2ubuntu0.1
|
||||||
tzdata2019c-0ubuntu0.18.04
|
tzdata2020a-0ubuntu0.18.04
|
||||||
ubuntu-keyring2018.09.18.1~18.04.0
|
ubuntu-keyring2018.09.18.1~18.04.0
|
||||||
util-linux2.31.1-0.4ubuntu3.6
|
util-linux2.31.1-0.4ubuntu3.6
|
||||||
xauth1:1.0.10-1
|
xauth1:1.0.10-1
|
||||||
|
xz-utils5.2.2-1.3
|
||||||
zlib1g1:1.2.11.dfsg-0ubuntu2
|
zlib1g1:1.2.11.dfsg-0ubuntu2
|
||||||
|
|||||||
@@ -22,6 +22,8 @@ project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_
|
|||||||
# supported architectures
|
# supported architectures
|
||||||
available_architectures:
|
available_architectures:
|
||||||
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
|
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
|
||||||
|
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
|
||||||
|
- { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"}
|
||||||
|
|
||||||
# development version
|
# development version
|
||||||
development_versions: true
|
development_versions: true
|
||||||
@@ -65,6 +67,7 @@ app_setup_block: |
|
|||||||
|
|
||||||
# changelog
|
# changelog
|
||||||
changelogs:
|
changelogs:
|
||||||
|
- { date: "18.05.20:", desc: "Switch to multi-arch images, install via npm." }
|
||||||
- { date: "29.04.20:", desc: "Update start arguments." }
|
- { date: "29.04.20:", desc: "Update start arguments." }
|
||||||
- { date: "01.04.20:", desc: "Structural changes required for v3." }
|
- { date: "01.04.20:", desc: "Structural changes required for v3." }
|
||||||
- { date: "17.01.20:", desc: "Fix artifact url retrieval from github." }
|
- { date: "17.01.20:", desc: "Fix artifact url retrieval from github." }
|
||||||
|
|||||||
@@ -9,11 +9,10 @@ fi
|
|||||||
|
|
||||||
exec \
|
exec \
|
||||||
s6-setuidgid abc \
|
s6-setuidgid abc \
|
||||||
/app/code-server/code-server \
|
/usr/bin/code-server \
|
||||||
--bind-addr 0.0.0.0:8443 \
|
--bind-addr 0.0.0.0:8443 \
|
||||||
--user-data-dir /config/data \
|
--user-data-dir /config/data \
|
||||||
--extensions-dir /config/extensions \
|
--extensions-dir /config/extensions \
|
||||||
--disable-telemetry \
|
--disable-telemetry \
|
||||||
--disable-updates \
|
|
||||||
--auth "${AUTH}" \
|
--auth "${AUTH}" \
|
||||||
/config/workspace
|
/config/workspace
|
||||||
|
|||||||
Reference in New Issue
Block a user