Skip to content

Commit 7929311

Browse files
committed
listen on both ipv4 and ipv6
1 parent eaeab33 commit 7929311

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
306306

307307
## Versions
308308

309+
* **21.04.23:** - Let server listen on both ipv4 and ipv6.
309310
* **01.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)
310311
* **05.10.22:** - Install recommended deps to maintain parity with the older images.
311312
* **29.09.22:** - Rebase to jammy, switch to s6v3. Fix chown logic to skip `/config/workspace` contents.

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ app_setup_block: |
5454
How to create the [hashed password](https://github.com/cdr/code-server/blob/master/docs/FAQ.md#can-i-store-my-password-hashed).
5555
# changelog
5656
changelogs:
57+
- {date: "21.04.23:", desc: "Let server listen on both ipv4 and ipv6."}
5758
- {date: "01.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"}
5859
- {date: "05.10.22:", desc: "Install recommended deps to maintain parity with the older images."}
5960
- {date: "29.09.22:", desc: "Rebase to jammy, switch to s6v3. Fix chown logic to skip `/config/workspace` contents."}

root/etc/s6-overlay/s6-rc.d/svc-code-server/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ exec \
1717
s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z 127.0.0.1 8443" \
1818
s6-setuidgid abc \
1919
/app/code-server/bin/code-server \
20-
--bind-addr 0.0.0.0:8443 \
20+
--bind-addr "[::]:8443" \
2121
--user-data-dir /config/data \
2222
--extensions-dir /config/extensions \
2323
--disable-telemetry \

0 commit comments

Comments
 (0)