Skip to content
Snippets Groups Projects

Resolve "Rename kms to goKMS"

Merged Neil-Jocelyn Schark requested to merge 9-rename-kms-to-gokms into master
Compare and
92 files
+ 364
340
Compare changes
  • Side-by-side
  • Inline
Files
92
+ 6
0
# The base container already has entrypoint, vscode user account, etc. out of the box
# The base container already has entrypoint, vscode user account, etc. out of the box
FROM mcr.microsoft.com/vscode/devcontainers/base:ubuntu-22.04
FROM mcr.microsoft.com/vscode/devcontainers/base:ubuntu-22.04
 
# Containerlab version will be set in devcontainer.json
 
ARG _CLAB_VERSION
 
# Set permissions for mounts in devcontainer.json
# Set permissions for mounts in devcontainer.json
RUN mkdir -p /home/vscode/.vscode-server/bin
RUN mkdir -p /home/vscode/.vscode-server/bin
RUN chown -R vscode:vscode /home/vscode/.vscode-server
RUN chown -R vscode:vscode /home/vscode/.vscode-server
@@ -28,6 +31,9 @@ RUN apt-get update \
@@ -28,6 +31,9 @@ RUN apt-get update \
# Install gnmic
# Install gnmic
RUN bash -c "$(curl -sL https://get-gnmic.openconfig.net)"
RUN bash -c "$(curl -sL https://get-gnmic.openconfig.net)"
 
# Install preferred version of the containerlab
 
RUN bash -c "$(curl -sL https://get.containerlab.dev)" -- -v ${_CLAB_VERSION}
 
# Install oh-my-zsh for more terminal features and set is as primary shell
# Install oh-my-zsh for more terminal features and set is as primary shell
ENV SHELL /bin/zsh
ENV SHELL /bin/zsh
RUN wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh || true
RUN wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh || true
Loading