├── .autofix └── fixers │ ├── update-lang-go.js │ ├── update-lang-java.js │ ├── update-lang-node.js │ ├── update-lang-python.js │ ├── update-lang-ruby.js │ ├── update-lang-rust.js │ ├── update-tool-brew.js │ └── update-tool-bun.js ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github ├── CODEOWNERS ├── promote-images.yml ├── sync-containers.yml └── workflows │ ├── autofix.yml │ ├── dockerhub-release.yml │ ├── lint.yml │ ├── pull-request.yml │ ├── push-main.yml │ ├── push-main │ └── upload_image.sh │ └── triage.yml ├── .gitignore ├── .gitpod.Dockerfile ├── .gitpod.yml ├── .gitpod └── automations.yaml ├── .markdownlint.yaml ├── .pre-commit-config.yaml ├── .vscode └── launch.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── base ├── Dockerfile ├── default.gitconfig ├── install-packages └── upgrade-packages ├── chunks ├── dep-cacert-update │ └── Dockerfile ├── lang-c │ └── Dockerfile ├── lang-clojure │ └── Dockerfile ├── lang-elixir │ └── Dockerfile ├── lang-go │ ├── Dockerfile │ └── chunk.yaml ├── lang-java │ ├── Dockerfile │ └── chunk.yaml ├── lang-node │ ├── Dockerfile │ ├── chunk.yaml │ └── nvm-lazy.sh ├── lang-python │ ├── Dockerfile │ ├── avoid_userbase_hook.bash │ ├── chunk.yaml │ ├── pyenv.d │ │ ├── exec │ │ │ └── gitpod.bash │ │ ├── install │ │ │ └── gitpod.bash │ │ ├── rehash │ │ │ └── gitpod.bash │ │ ├── uninstall │ │ │ └── gitpod.bash │ │ └── which │ │ │ └── gitpod.bash │ ├── python_hook.bash │ └── userbase.bash ├── lang-ruby │ ├── Dockerfile │ ├── chunk.yaml │ └── install.sh ├── lang-rust │ ├── Dockerfile │ └── chunk.yaml ├── tool-brew │ └── Dockerfile ├── tool-bun │ ├── .bunfig.toml │ ├── Dockerfile │ └── chunk.yaml ├── tool-chrome │ └── Dockerfile ├── tool-docker │ └── Dockerfile ├── tool-dotnet │ ├── Dockerfile │ └── chunk.yaml ├── tool-mongodb │ └── Dockerfile ├── tool-mysql │ ├── Dockerfile │ ├── client.cnf │ ├── mysql-bashrc-launch.sh │ └── mysql.cnf ├── tool-nginx │ ├── Dockerfile │ ├── apache2 │ │ ├── apache2.conf │ │ └── envvars │ └── nginx │ │ └── nginx.conf ├── tool-nix │ ├── Dockerfile │ └── chunk.yaml ├── tool-postgresql │ ├── Dockerfile │ └── postgresql-hook.bash ├── tool-tailscale │ └── Dockerfile ├── tool-vnc │ ├── .xinitrc │ ├── Dockerfile │ ├── gp-vncsession │ └── novnc-index.html └── tool-yugabytedb │ ├── Dockerfile │ └── chunk.yaml ├── dazzle.yaml ├── renovate.json └── tests ├── dep-cacert-update.yaml ├── lang-c.yaml ├── lang-clojure.yaml ├── lang-elixir.yaml ├── lang-go.yaml ├── lang-java.yaml ├── lang-node.yaml ├── lang-php.yaml ├── lang-python.yaml ├── lang-ruby.yaml ├── lang-rust.yaml ├── prologue.yaml ├── tool-brew.yaml ├── tool-bun.yaml ├── tool-chrome.yaml ├── tool-docker.yaml ├── tool-dotnet.yaml ├── tool-mongodb.yaml ├── tool-mysql.yaml ├── tool-nginx.yaml ├── tool-nix.yaml ├── tool-postgresql.yaml ├── tool-tailscale.yaml ├── tool-vnc.yaml └── tool-yugabytedb.yaml /.autofix/fixers/update-lang-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.autofix/fixers/update-lang-go.js -------------------------------------------------------------------------------- /.autofix/fixers/update-lang-java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.autofix/fixers/update-lang-java.js -------------------------------------------------------------------------------- /.autofix/fixers/update-lang-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.autofix/fixers/update-lang-node.js -------------------------------------------------------------------------------- /.autofix/fixers/update-lang-python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.autofix/fixers/update-lang-python.js -------------------------------------------------------------------------------- /.autofix/fixers/update-lang-ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.autofix/fixers/update-lang-ruby.js -------------------------------------------------------------------------------- /.autofix/fixers/update-lang-rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.autofix/fixers/update-lang-rust.js -------------------------------------------------------------------------------- /.autofix/fixers/update-tool-brew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.autofix/fixers/update-tool-brew.js -------------------------------------------------------------------------------- /.autofix/fixers/update-tool-bun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.autofix/fixers/update-tool-bun.js -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/promote-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.github/promote-images.yml -------------------------------------------------------------------------------- /.github/sync-containers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.github/sync-containers.yml -------------------------------------------------------------------------------- /.github/workflows/autofix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.github/workflows/autofix.yml -------------------------------------------------------------------------------- /.github/workflows/dockerhub-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.github/workflows/dockerhub-release.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/push-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.github/workflows/push-main.yml -------------------------------------------------------------------------------- /.github/workflows/push-main/upload_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.github/workflows/push-main/upload_image.sh -------------------------------------------------------------------------------- /.github/workflows/triage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.github/workflows/triage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.gitpod.Dockerfile -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.gitpod/automations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.gitpod/automations.yaml -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/SECURITY.md -------------------------------------------------------------------------------- /base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/base/Dockerfile -------------------------------------------------------------------------------- /base/default.gitconfig: -------------------------------------------------------------------------------- 1 | [safe] 2 | directory = * 3 | -------------------------------------------------------------------------------- /base/install-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/base/install-packages -------------------------------------------------------------------------------- /base/upgrade-packages: -------------------------------------------------------------------------------- 1 | install-packages -------------------------------------------------------------------------------- /chunks/dep-cacert-update/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/dep-cacert-update/Dockerfile -------------------------------------------------------------------------------- /chunks/lang-c/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-c/Dockerfile -------------------------------------------------------------------------------- /chunks/lang-clojure/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-clojure/Dockerfile -------------------------------------------------------------------------------- /chunks/lang-elixir/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-elixir/Dockerfile -------------------------------------------------------------------------------- /chunks/lang-go/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-go/Dockerfile -------------------------------------------------------------------------------- /chunks/lang-go/chunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-go/chunk.yaml -------------------------------------------------------------------------------- /chunks/lang-java/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-java/Dockerfile -------------------------------------------------------------------------------- /chunks/lang-java/chunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-java/chunk.yaml -------------------------------------------------------------------------------- /chunks/lang-node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-node/Dockerfile -------------------------------------------------------------------------------- /chunks/lang-node/chunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-node/chunk.yaml -------------------------------------------------------------------------------- /chunks/lang-node/nvm-lazy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-node/nvm-lazy.sh -------------------------------------------------------------------------------- /chunks/lang-python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-python/Dockerfile -------------------------------------------------------------------------------- /chunks/lang-python/avoid_userbase_hook.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-python/avoid_userbase_hook.bash -------------------------------------------------------------------------------- /chunks/lang-python/chunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-python/chunk.yaml -------------------------------------------------------------------------------- /chunks/lang-python/pyenv.d/exec/gitpod.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-python/pyenv.d/exec/gitpod.bash -------------------------------------------------------------------------------- /chunks/lang-python/pyenv.d/install/gitpod.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-python/pyenv.d/install/gitpod.bash -------------------------------------------------------------------------------- /chunks/lang-python/pyenv.d/rehash/gitpod.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-python/pyenv.d/rehash/gitpod.bash -------------------------------------------------------------------------------- /chunks/lang-python/pyenv.d/uninstall/gitpod.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-python/pyenv.d/uninstall/gitpod.bash -------------------------------------------------------------------------------- /chunks/lang-python/pyenv.d/which/gitpod.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-python/pyenv.d/which/gitpod.bash -------------------------------------------------------------------------------- /chunks/lang-python/python_hook.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-python/python_hook.bash -------------------------------------------------------------------------------- /chunks/lang-python/userbase.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-python/userbase.bash -------------------------------------------------------------------------------- /chunks/lang-ruby/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-ruby/Dockerfile -------------------------------------------------------------------------------- /chunks/lang-ruby/chunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-ruby/chunk.yaml -------------------------------------------------------------------------------- /chunks/lang-ruby/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-ruby/install.sh -------------------------------------------------------------------------------- /chunks/lang-rust/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-rust/Dockerfile -------------------------------------------------------------------------------- /chunks/lang-rust/chunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/lang-rust/chunk.yaml -------------------------------------------------------------------------------- /chunks/tool-brew/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-brew/Dockerfile -------------------------------------------------------------------------------- /chunks/tool-bun/.bunfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-bun/.bunfig.toml -------------------------------------------------------------------------------- /chunks/tool-bun/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-bun/Dockerfile -------------------------------------------------------------------------------- /chunks/tool-bun/chunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-bun/chunk.yaml -------------------------------------------------------------------------------- /chunks/tool-chrome/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-chrome/Dockerfile -------------------------------------------------------------------------------- /chunks/tool-docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-docker/Dockerfile -------------------------------------------------------------------------------- /chunks/tool-dotnet/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-dotnet/Dockerfile -------------------------------------------------------------------------------- /chunks/tool-dotnet/chunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-dotnet/chunk.yaml -------------------------------------------------------------------------------- /chunks/tool-mongodb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-mongodb/Dockerfile -------------------------------------------------------------------------------- /chunks/tool-mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-mysql/Dockerfile -------------------------------------------------------------------------------- /chunks/tool-mysql/client.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-mysql/client.cnf -------------------------------------------------------------------------------- /chunks/tool-mysql/mysql-bashrc-launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-mysql/mysql-bashrc-launch.sh -------------------------------------------------------------------------------- /chunks/tool-mysql/mysql.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-mysql/mysql.cnf -------------------------------------------------------------------------------- /chunks/tool-nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-nginx/Dockerfile -------------------------------------------------------------------------------- /chunks/tool-nginx/apache2/apache2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-nginx/apache2/apache2.conf -------------------------------------------------------------------------------- /chunks/tool-nginx/apache2/envvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-nginx/apache2/envvars -------------------------------------------------------------------------------- /chunks/tool-nginx/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-nginx/nginx/nginx.conf -------------------------------------------------------------------------------- /chunks/tool-nix/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-nix/Dockerfile -------------------------------------------------------------------------------- /chunks/tool-nix/chunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-nix/chunk.yaml -------------------------------------------------------------------------------- /chunks/tool-postgresql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-postgresql/Dockerfile -------------------------------------------------------------------------------- /chunks/tool-postgresql/postgresql-hook.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-postgresql/postgresql-hook.bash -------------------------------------------------------------------------------- /chunks/tool-tailscale/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-tailscale/Dockerfile -------------------------------------------------------------------------------- /chunks/tool-vnc/.xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-vnc/.xinitrc -------------------------------------------------------------------------------- /chunks/tool-vnc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-vnc/Dockerfile -------------------------------------------------------------------------------- /chunks/tool-vnc/gp-vncsession: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-vnc/gp-vncsession -------------------------------------------------------------------------------- /chunks/tool-vnc/novnc-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-vnc/novnc-index.html -------------------------------------------------------------------------------- /chunks/tool-yugabytedb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-yugabytedb/Dockerfile -------------------------------------------------------------------------------- /chunks/tool-yugabytedb/chunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/chunks/tool-yugabytedb/chunk.yaml -------------------------------------------------------------------------------- /dazzle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/dazzle.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/renovate.json -------------------------------------------------------------------------------- /tests/dep-cacert-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/dep-cacert-update.yaml -------------------------------------------------------------------------------- /tests/lang-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/lang-c.yaml -------------------------------------------------------------------------------- /tests/lang-clojure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/lang-clojure.yaml -------------------------------------------------------------------------------- /tests/lang-elixir.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/lang-elixir.yaml -------------------------------------------------------------------------------- /tests/lang-go.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/lang-go.yaml -------------------------------------------------------------------------------- /tests/lang-java.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/lang-java.yaml -------------------------------------------------------------------------------- /tests/lang-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/lang-node.yaml -------------------------------------------------------------------------------- /tests/lang-php.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/lang-php.yaml -------------------------------------------------------------------------------- /tests/lang-python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/lang-python.yaml -------------------------------------------------------------------------------- /tests/lang-ruby.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/lang-ruby.yaml -------------------------------------------------------------------------------- /tests/lang-rust.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/lang-rust.yaml -------------------------------------------------------------------------------- /tests/prologue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/prologue.yaml -------------------------------------------------------------------------------- /tests/tool-brew.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/tool-brew.yaml -------------------------------------------------------------------------------- /tests/tool-bun.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/tool-bun.yaml -------------------------------------------------------------------------------- /tests/tool-chrome.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/tool-chrome.yaml -------------------------------------------------------------------------------- /tests/tool-docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/tool-docker.yaml -------------------------------------------------------------------------------- /tests/tool-dotnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/tool-dotnet.yaml -------------------------------------------------------------------------------- /tests/tool-mongodb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/tool-mongodb.yaml -------------------------------------------------------------------------------- /tests/tool-mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/tool-mysql.yaml -------------------------------------------------------------------------------- /tests/tool-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/tool-nginx.yaml -------------------------------------------------------------------------------- /tests/tool-nix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/tool-nix.yaml -------------------------------------------------------------------------------- /tests/tool-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/tool-postgresql.yaml -------------------------------------------------------------------------------- /tests/tool-tailscale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/tool-tailscale.yaml -------------------------------------------------------------------------------- /tests/tool-vnc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/tool-vnc.yaml -------------------------------------------------------------------------------- /tests/tool-yugabytedb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/workspace-images/HEAD/tests/tool-yugabytedb.yaml --------------------------------------------------------------------------------