mirror of
https://github.com/kasmtech/workspaces-images.git
synced 2024-11-25 09:33:08 +01:00
KASM-3187 add jammy dind images
This commit is contained in:
parent
6c3164d07b
commit
0c0cdd4667
@ -39,6 +39,8 @@ variables:
|
|||||||
|
|
||||||
.MULTI_ARCH_BUILDS2: &MULTI_ARCH_BUILDS2
|
.MULTI_ARCH_BUILDS2: &MULTI_ARCH_BUILDS2
|
||||||
- vivaldi
|
- vivaldi
|
||||||
|
- ubuntu-jammy-dind
|
||||||
|
- ubuntu-jammy-dind-rootless
|
||||||
|
|
||||||
.SINGLE_ARCH_BUILDS: &SINGLE_ARCH_BUILDS
|
.SINGLE_ARCH_BUILDS: &SINGLE_ARCH_BUILDS
|
||||||
- atom
|
- atom
|
||||||
@ -166,7 +168,7 @@ build_ubuntu_desktop_images:
|
|||||||
- aws-autoscale
|
- aws-autoscale
|
||||||
parallel:
|
parallel:
|
||||||
matrix:
|
matrix:
|
||||||
- KASM_IMAGE: [desktop, desktop-deluxe, ubuntu-focal-desktop, ubuntu-jammy-desktop, ubuntu-focal-dind, ubuntu-focal-dind-rootless]
|
- KASM_IMAGE: [desktop, desktop-deluxe, ubuntu-focal-desktop, ubuntu-jammy-desktop, ubuntu-focal-dind, ubuntu-focal-dind-rootless, ubuntu-jammy-dind, ubuntu-jammy-dind-rootless]
|
||||||
|
|
||||||
build_non_ubuntu:
|
build_non_ubuntu:
|
||||||
stage: build
|
stage: build
|
||||||
@ -559,7 +561,7 @@ build_schedules_ubuntu_desktop_images:
|
|||||||
- aws-autoscale
|
- aws-autoscale
|
||||||
parallel:
|
parallel:
|
||||||
matrix:
|
matrix:
|
||||||
- KASM_IMAGE: [desktop, desktop-deluxe, ubuntu-focal-desktop, ubuntu-jammy-desktop, ubuntu-focal-dind, ubuntu-focal-dind-rootless]
|
- KASM_IMAGE: [desktop, desktop-deluxe, ubuntu-focal-desktop, ubuntu-jammy-desktop, ubuntu-focal-dind, ubuntu-focal-dind-rootless, ubuntu-jammy-dind, ubuntu-jammy-dind-rootless]
|
||||||
|
|
||||||
build_schedules_non_ubuntu:
|
build_schedules_non_ubuntu:
|
||||||
image: ${ORG_NAME}/docker-buildx-private:develop
|
image: ${ORG_NAME}/docker-buildx-private:develop
|
||||||
@ -710,3 +712,5 @@ update_readmes2:
|
|||||||
matrix:
|
matrix:
|
||||||
- KASM_IMAGE:
|
- KASM_IMAGE:
|
||||||
- vivaldi
|
- vivaldi
|
||||||
|
- ubuntu-jammy-dind
|
||||||
|
- ubuntu-jammy-dind-rootless
|
||||||
|
59
dockerfile-kasm-ubuntu-jammy-dind
Normal file
59
dockerfile-kasm-ubuntu-jammy-dind
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
ARG BASE_TAG="develop"
|
||||||
|
ARG BASE_IMAGE="core-ubuntu-jammy"
|
||||||
|
FROM kasmweb/$BASE_IMAGE:$BASE_TAG
|
||||||
|
USER root
|
||||||
|
|
||||||
|
ENV HOME /home/kasm-default-profile
|
||||||
|
ENV STARTUPDIR /dockerstartup
|
||||||
|
ENV INST_SCRIPTS $STARTUPDIR/install
|
||||||
|
WORKDIR $HOME
|
||||||
|
|
||||||
|
######### Customize Container Here ###########
|
||||||
|
|
||||||
|
ENV DOCKER_CHANNEL=stable \
|
||||||
|
DOCKER_VERSION=20.10.9 \
|
||||||
|
DOCKER_COMPOSE_VERSION=1.29.2 \
|
||||||
|
DEBUG=false
|
||||||
|
|
||||||
|
COPY ./src/ubuntu/install/dind $INST_SCRIPTS/dind/
|
||||||
|
COPY ./src/ubuntu/install/dind/daemon.json /etc/docker/daemon.json
|
||||||
|
|
||||||
|
RUN bash $INST_SCRIPTS/dind/install_dind.sh && rm -rf $INST_SCRIPTS/dind/
|
||||||
|
|
||||||
|
COPY ./src/ubuntu/install/dind/custom_startup.sh $STARTUPDIR/custom_startup.sh
|
||||||
|
RUN chmod +x $STARTUPDIR/custom_startup.sh
|
||||||
|
RUN chmod 755 $STARTUPDIR/custom_startup.sh
|
||||||
|
|
||||||
|
COPY ./src/ubuntu/install/dind/modprobe /usr/local/bin/modprobe
|
||||||
|
RUN chmod +x /usr/local/bin/modprobe
|
||||||
|
COPY ./src/ubuntu/install/dind/dockerd.conf /etc/supervisor/conf.d/
|
||||||
|
|
||||||
|
### Install Tools
|
||||||
|
COPY ./src/ubuntu/install/tools $INST_SCRIPTS/tools/
|
||||||
|
RUN bash $INST_SCRIPTS/tools/install_tools_deluxe.sh && rm -rf $INST_SCRIPTS/tools/
|
||||||
|
|
||||||
|
# Install Utilities
|
||||||
|
COPY ./src/ubuntu/install/misc $INST_SCRIPTS/misc/
|
||||||
|
RUN bash $INST_SCRIPTS/misc/install_tools.sh && rm -rf $INST_SCRIPTS/misc/
|
||||||
|
|
||||||
|
### Install Sublime Text
|
||||||
|
COPY ./src/ubuntu/install/sublime_text $INST_SCRIPTS/sublime_text/
|
||||||
|
RUN bash $INST_SCRIPTS/sublime_text/install_sublime_text.sh && rm -rf $INST_SCRIPTS/sublime_text/
|
||||||
|
|
||||||
|
### Install Visual Studio Code
|
||||||
|
COPY ./src/ubuntu/install/vs_code $INST_SCRIPTS/vs_code/
|
||||||
|
RUN bash $INST_SCRIPTS/vs_code/install_vs_code.sh && rm -rf $INST_SCRIPTS/vs_code/
|
||||||
|
|
||||||
|
# Install Google Chrome
|
||||||
|
COPY ./src/ubuntu/install/chrome $INST_SCRIPTS/chrome/
|
||||||
|
RUN bash $INST_SCRIPTS/chrome/install_chrome.sh && rm -rf $INST_SCRIPTS/chrome/
|
||||||
|
|
||||||
|
######### End Customizations ###########
|
||||||
|
|
||||||
|
RUN chown 1000:0 $HOME
|
||||||
|
|
||||||
|
ENV HOME /home/kasm-user
|
||||||
|
WORKDIR $HOME
|
||||||
|
RUN mkdir -p $HOME && chown -R 1000:0 $HOME
|
||||||
|
|
||||||
|
USER 1000
|
67
dockerfile-kasm-ubuntu-jammy-dind-rootless
Normal file
67
dockerfile-kasm-ubuntu-jammy-dind-rootless
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
ARG BASE_TAG="develop"
|
||||||
|
ARG BASE_IMAGE="core-ubuntu-jammy"
|
||||||
|
FROM kasmweb/$BASE_IMAGE:$BASE_TAG
|
||||||
|
USER root
|
||||||
|
|
||||||
|
ENV HOME /home/kasm-default-profile
|
||||||
|
ENV STARTUPDIR /dockerstartup
|
||||||
|
ENV INST_SCRIPTS $STARTUPDIR/install
|
||||||
|
WORKDIR $HOME
|
||||||
|
|
||||||
|
######### Customize Container Here ###########
|
||||||
|
|
||||||
|
ENV DOCKER_BIN=/usr/local/lib/docker \
|
||||||
|
XDG_RUNTIME_DIR=/docker
|
||||||
|
|
||||||
|
RUN mkdir -p $DOCKER_BIN && chown 1000:0 $DOCKER_BIN && \
|
||||||
|
mkdir -p $XDG_RUNTIME_DIR && chown 1000:0 $XDG_RUNTIME_DIR
|
||||||
|
|
||||||
|
ENV PATH=$DOCKER_BIN:$DOCKER_BIN/cli-plugins:$PATH \
|
||||||
|
DOCKER_HOST=unix://$XDG_RUNTIME_DIR/docker.sock
|
||||||
|
|
||||||
|
COPY ./src/ubuntu/install/dind_rootless/install_dind_rootless_prerequisites.sh $INST_SCRIPTS/dind_rootless/
|
||||||
|
RUN bash $INST_SCRIPTS/dind_rootless/install_dind_rootless_prerequisites.sh
|
||||||
|
|
||||||
|
COPY ./src/ubuntu/install/dind_rootless/install_dind_rootless.sh $INST_SCRIPTS/dind_rootless/
|
||||||
|
RUN chown 1000:1000 $INST_SCRIPTS/dind_rootless/install_dind_rootless.sh
|
||||||
|
# It's recommended that docker-rootless be installed by non root user
|
||||||
|
USER 1000
|
||||||
|
RUN bash $INST_SCRIPTS/dind_rootless/install_dind_rootless.sh
|
||||||
|
USER root
|
||||||
|
RUN rm -rf $INST_SCRIPTS/dind_rootless
|
||||||
|
|
||||||
|
COPY ./src/ubuntu/install/dind_rootless/custom_startup.sh $STARTUPDIR/custom_startup.sh
|
||||||
|
RUN chmod +x $STARTUPDIR/custom_startup.sh && chmod 755 $STARTUPDIR/custom_startup.sh
|
||||||
|
|
||||||
|
COPY ./src/ubuntu/install/dind_rootless/modprobe /usr/local/bin/modprobe
|
||||||
|
RUN chmod +x /usr/local/bin/modprobe
|
||||||
|
|
||||||
|
### Install Tools
|
||||||
|
COPY ./src/ubuntu/install/tools $INST_SCRIPTS/tools/
|
||||||
|
RUN bash $INST_SCRIPTS/tools/install_tools_deluxe.sh && rm -rf $INST_SCRIPTS/tools/
|
||||||
|
|
||||||
|
# Install Utilities
|
||||||
|
COPY ./src/ubuntu/install/misc $INST_SCRIPTS/misc/
|
||||||
|
RUN bash $INST_SCRIPTS/misc/install_tools.sh && rm -rf $INST_SCRIPTS/misc/
|
||||||
|
|
||||||
|
### Install Sublime Text
|
||||||
|
COPY ./src/ubuntu/install/sublime_text $INST_SCRIPTS/sublime_text/
|
||||||
|
RUN bash $INST_SCRIPTS/sublime_text/install_sublime_text.sh && rm -rf $INST_SCRIPTS/sublime_text/
|
||||||
|
|
||||||
|
### Install Visual Studio Code
|
||||||
|
COPY ./src/ubuntu/install/vs_code $INST_SCRIPTS/vs_code/
|
||||||
|
RUN bash $INST_SCRIPTS/vs_code/install_vs_code.sh && rm -rf $INST_SCRIPTS/vs_code/
|
||||||
|
|
||||||
|
# Install Google Chrome
|
||||||
|
COPY ./src/ubuntu/install/chrome $INST_SCRIPTS/chrome/
|
||||||
|
RUN bash $INST_SCRIPTS/chrome/install_chrome.sh && rm -rf $INST_SCRIPTS/chrome/
|
||||||
|
|
||||||
|
######### End Customizations ###########
|
||||||
|
|
||||||
|
RUN chown 1000:0 $HOME
|
||||||
|
|
||||||
|
ENV HOME /home/kasm-user
|
||||||
|
WORKDIR $HOME
|
||||||
|
RUN mkdir -p $HOME && chown -R 1000:0 $HOME
|
||||||
|
|
||||||
|
USER 1000
|
13
docs/ubuntu-jammy-dind-rootless/README.md
Normal file
13
docs/ubuntu-jammy-dind-rootless/README.md
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# About This Image
|
||||||
|
|
||||||
|
This Image contains a browser-accessible version of [Docker](https://www.docker.com/) running as a normal, non-root user.
|
||||||
|
|
||||||
|
![Screenshot][Image_Screenshot]
|
||||||
|
|
||||||
|
[Image_Screenshot]: https://5856039.fs1.hubspotusercontent-na1.net/hubfs/5856039/dockerhub/image-screenshots/ubuntu-jammy-dind-rootless.png "Image Screenshot"
|
||||||
|
|
||||||
|
See [Kasm Docs](https://kasmweb.com/docs/latest/how_to/docker_in_kasm.html) for additional setup instructions.
|
||||||
|
|
||||||
|
# Environment Variables
|
||||||
|
|
||||||
|
* `APP_ARGS` - Additional arguments to pass to the application when launched.
|
1
docs/ubuntu-jammy-dind-rootless/description.txt
Normal file
1
docs/ubuntu-jammy-dind-rootless/description.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
Rootless Docker for Kasm Workspaces
|
13
docs/ubuntu-jammy-dind/README.md
Normal file
13
docs/ubuntu-jammy-dind/README.md
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# About This Image
|
||||||
|
|
||||||
|
This Image contains a browser-accessible version of [Docker](https://www.docker.com/).
|
||||||
|
|
||||||
|
![Screenshot][Image_Screenshot]
|
||||||
|
|
||||||
|
[Image_Screenshot]: https://5856039.fs1.hubspotusercontent-na1.net/hubfs/5856039/dockerhub/image-screenshots/ubuntu-jammy-dind.png "Image Screenshot"
|
||||||
|
|
||||||
|
See [Kasm Docs](https://kasmweb.com/docs/latest/how_to/docker_in_kasm.html) for additional setup instructions.
|
||||||
|
|
||||||
|
# Environment Variables
|
||||||
|
|
||||||
|
* `APP_ARGS` - Additional arguments to pass to the application when launched.
|
1
docs/ubuntu-jammy-dind/description.txt
Normal file
1
docs/ubuntu-jammy-dind/description.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
Docker for Kasm Workspaces
|
@ -47,6 +47,7 @@ sed -i 's/-stable//g' /usr/share/applications/google-chrome.desktop
|
|||||||
|
|
||||||
cp /usr/share/applications/google-chrome.desktop $HOME/Desktop/
|
cp /usr/share/applications/google-chrome.desktop $HOME/Desktop/
|
||||||
chown 1000:1000 $HOME/Desktop/google-chrome.desktop
|
chown 1000:1000 $HOME/Desktop/google-chrome.desktop
|
||||||
|
chmod +x $HOME/Desktop/google-chrome.desktop
|
||||||
|
|
||||||
mv /usr/bin/google-chrome /usr/bin/google-chrome-orig
|
mv /usr/bin/google-chrome /usr/bin/google-chrome-orig
|
||||||
cat >/usr/bin/google-chrome <<EOL
|
cat >/usr/bin/google-chrome <<EOL
|
||||||
|
Loading…
Reference in New Issue
Block a user