Skip to content

Added option to enable SSL, provide certificate/key and set server port. #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ LABEL maintainer="aptalca"
ENV HOME="/config"

RUN \
DEBIAN_FRONTEND="noninteractive" \
apt-get update && \
apt-get install -y \
DEBIAN_FRONTEND="noninteractive" apt-get install -y \
git \
jq \
nano \
Expand Down
6 changes: 6 additions & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ param_container_name: "{{ project_name }}"
param_usage_include_vols: true
param_volumes:
- { vol_path: "/config", vol_host_path: "/path/to/appdata/config", desc: "Contains all relevant configuration files." }
- { vol_path: "/certificates", vol_host_path: "/path/to/appdata/certificates", desc: "Contains the certificate as well as the key file for SSL encryption" }
param_usage_include_ports: true
param_ports:
- { external_port: "8443", internal_port: "8443", port_desc: "web gui" }
Expand All @@ -45,7 +46,11 @@ param_env_vars:
# optional container parameters
opt_param_usage_include_env: true
opt_param_env_vars:
- { env_var: "HTTPS_CERT", env_value: "/certificates/cert_name.crt", "Full path to certificate file that should be used. PEM encoded." }
- { env_var: "HTTPS_KEY", env_value: "/certificates/key_name.key", "Full path to the key file that is to be used. PEM encoded, unencrypted." }
- { env_var: "PASSWORD", env_value: "password", desc: "Optional web gui password, if not provided, there will be no auth."}
- { env_var: "SERVER_PORT", env_value: "8443", desc: "Optional port of the web server that should be used. Cannot be less than 1024."}
- { env_var: "SSL_ENABLED", env_value: "true", desc: "Enable SSL encryption for the connection. If no cert/key is provided, it is auto generated."}
- { env_var: "SUDO_PASSWORD", env_value: "password", desc: "If this optional variable is set, user will have sudo access in the code-server terminal with the specified password."}

optional_block_1: false
Expand All @@ -65,6 +70,7 @@ app_setup_block: |

# changelog
changelogs:
- { date: "09.03.20:", desc: "Added SSL support and option to set server port." }
- { date: "17.01.20:", desc: "Fix artifact url retrieval from github." }
- { date: "24.10.19:", desc: "Upgrade to v2 builds." }
- { date: "28.09.19:", desc: "Update project logo." }
Expand Down
24 changes: 23 additions & 1 deletion root/etc/services.d/code-server/run
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
#!/usr/bin/with-contenv bash

CODE_SERVER_PORT="${SERVER_PORT:-8443}"
CODE_SERVER_SSL="${SSL_ENABLED:-false}"

SSL_CERT_COMMAND=
SSL_CERT_FILE=
SSL_KEY_COMMAND=
SSL_KEY_FILE=

if [ "${CODE_SERVER_SSL}x" != "falsex" ]; then
SSL_CERT_COMMAND="--cert"

if [ -f "${HTTPS_CERT}" ] && [ -f "${HTTPS_KEY}" ]; then

SSL_CERT_COMMAND="--cert"
SSL_CERT_FILE="${HTTPS_CERT}"
SSL_KEY_COMMAND="--cert-key"
SSL_KEY_FILE="${HTTPS_KEY}"
fi
fi

if [ -n "${PASSWORD}" ]; then
AUTH="password"
else
Expand All @@ -10,7 +30,9 @@ fi
exec \
s6-setuidgid abc \
/usr/bin/code-server \
--port 8443 \
${SSL_CERT_COMMAND} ${SSL_CERT_FILE} \
${SSL_KEY_COMMAND} ${SSL_KEY_FILE} \
--port "${CODE_SERVER_PORT}" \
--user-data-dir /config/data \
--extensions-dir /config/extensions \
--disable-telemetry \
Expand Down