mirror of
https://github.com/linuxserver/docker-code-server.git
synced 2025-04-16 22:59:30 +02:00
fixes for breaking changes in 3.3.0
This commit is contained in:
parent
84873a6b62
commit
89645ca77b
@ -25,7 +25,7 @@ RUN \
|
||||
| awk '/tag_name/{print $4;exit}' FS='[""]'); \
|
||||
fi && \
|
||||
CODE_URL=$(curl -sX GET "https://api.github.com/repos/cdr/code-server/releases/tags/${CODE_RELEASE}" \
|
||||
| jq -r '.assets[] | select(.browser_download_url | contains("linux-x86_64")) | .browser_download_url') && \
|
||||
| jq -r '.assets[] | select(.browser_download_url | contains("linux-amd64")) | .browser_download_url') && \
|
||||
mkdir -p /app/code-server && \
|
||||
curl -o \
|
||||
/tmp/code.tar.gz -L \
|
||||
|
@ -234,6 +234,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
|
||||
|
||||
## Versions
|
||||
|
||||
* **17.05.20:** - Fixes for breaking changes in 3.3.0.
|
||||
* **29.04.20:** - Update start arguments.
|
||||
* **01.04.20:** - Structural changes required for v3.
|
||||
* **17.01.20:** - Fix artifact url retrieval from github.
|
||||
|
@ -65,6 +65,7 @@ app_setup_block: |
|
||||
|
||||
# changelog
|
||||
changelogs:
|
||||
- { date: "17.05.20:", desc: "Fixes for breaking changes in 3.3.0." }
|
||||
- { date: "29.04.20:", desc: "Update start arguments." }
|
||||
- { date: "01.04.20:", desc: "Structural changes required for v3." }
|
||||
- { date: "17.01.20:", desc: "Fix artifact url retrieval from github." }
|
||||
|
@ -9,11 +9,10 @@ fi
|
||||
|
||||
exec \
|
||||
s6-setuidgid abc \
|
||||
/app/code-server/code-server \
|
||||
/app/code-server/bin/code-server \
|
||||
--bind-addr 0.0.0.0:8443 \
|
||||
--user-data-dir /config/data \
|
||||
--extensions-dir /config/extensions \
|
||||
--disable-telemetry \
|
||||
--disable-updates \
|
||||
--auth "${AUTH}" \
|
||||
/config/workspace
|
||||
|
Loading…
x
Reference in New Issue
Block a user