Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ RUN \
ALVERSION=$(cat /kasm_release/conf/database/seed_data/default_properties.yaml |awk '/alembic_version/ {print $2}') && \
curl -o \
/tmp/images.tar.gz -L \
"https://kasm-ci.s3.amazonaws.com/1.17.0-images-combined.tar.gz" && \
"https://kasm-ci.s3.amazonaws.com/1.18.0-images-combined.tar.gz" && \
tar xf \
/tmp/images.tar.gz -C \
/ && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ RUN \
ALVERSION=$(cat /kasm_release/conf/database/seed_data/default_properties.yaml |awk '/alembic_version/ {print $2}') && \
curl -o \
/tmp/images.tar.gz -L \
"https://kasm-ci.s3.amazonaws.com/1.17.0-images-combined.tar.gz" && \
"https://kasm-ci.s3.amazonaws.com/1.18.0-images-combined.tar.gz" && \
tar xf \
/tmp/images.tar.gz -C \
/ && \
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **22.10.25:** - Update for 1.18.0 release.
* **08.06.25:** - Deprecate develop branch.
* **03.06.25:** - Rebase to Ubuntu Noble. Update for 1.17.0 release.
* **09.11.24:** - Update base image for 1.16.1 release.
Expand Down
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ init_diagram: |
"kasm:latest" <- Base Images
# changelog
changelogs:
- {date: "22.10.25:", desc: "Update for 1.18.0 release."}
- {date: "08.06.25:", desc: "Deprecate develop branch."}
- {date: "03.06.25:", desc: "Rebase to Ubuntu Noble. Update for 1.17.0 release."}
- {date: "09.11.24:", desc: "Update base image for 1.16.1 release."}
Expand Down
2 changes: 1 addition & 1 deletion root/etc/s6-overlay/s6-rc.d/init-config-kasm/run
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ fi

# Login to Dockerhub
if [[ -n "${DOCKER_HUB_USERNAME}" ]]; then
docker login --username $DOCKER_HUB_USERNAME --password $DOCKER_HUB_PASSWORD
docker login --username "${DOCKER_HUB_USERNAME}" --password "${DOCKER_HUB_PASSWORD}"
fi

# Generate self cert for wizard
Expand Down
6 changes: 3 additions & 3 deletions root/etc/s6-overlay/s6-rc.d/svc-kasm-wizard/run
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

# Wait for docker to be up
while true; do
if [ -S "/var/run/docker.sock" ]; then
if [[ -S "/var/run/docker.sock" ]]; then
break
fi
sleep 1
done

# Don't do anything if wizard is disabled
if [ -f "/opt/NO_WIZARD" ]; then
if [[ -f "/opt/NO_WIZARD" ]]; then
sleep infinity
fi

cd /wizard
cd /wizard || exit 1
/usr/bin/node index.js