diff options
| author | Kevin J Hoerr <kjhoerr@protonmail.com> | 2022-12-29 18:03:41 -0500 |
|---|---|---|
| committer | Kevin J Hoerr <kjhoerr@protonmail.com> | 2025-08-18 11:51:00 -0400 |
| commit | fdf36c0af83db4fa015794e9827ccce0aa8b5a5e (patch) | |
| tree | 63a1cb8a74a6f50167583d24b574bd423cd47e39 /.devcontainer/devcontainer.json | |
| parent | 5f6acdf1119669c49490eb5b5aefb5eacc472bd2 (diff) | |
| download | pantry-fdf36c0af83db4fa015794e9827ccce0aa8b5a5e.tar.gz pantry-fdf36c0af83db4fa015794e9827ccce0aa8b5a5e.tar.bz2 pantry-fdf36c0af83db4fa015794e9827ccce0aa8b5a5e.zip | |
Update; Switch to MongoDB
Diffstat (limited to '.devcontainer/devcontainer.json')
| -rw-r--r-- | .devcontainer/devcontainer.json | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index e4580f7..36e9c21 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,15 +1,14 @@ -// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: -// https://github.com/microsoft/vscode-dev-containers/tree/v0.241.1/containers/java { "name": "Pantry", - "build": { - "dockerfile": "Dockerfile", - "args": { - "VARIANT": "17-bullseye", - "INSTALL_MAVEN": "true", - "INSTALL_GRADLE": "false", - "NODE_VERSION": "lts/*", - "LIQUIBASE_VERSION": "4.14.0" + "image": "mcr.microsoft.com/devcontainers/java:17-bullseye", + "features": { + "ghcr.io/devcontainers/features/java:1": { + "version": "none", + "installMaven": "true" + }, + "ghcr.io/devcontainers/features/docker-in-docker:2": {}, + "ghcr.io/devcontainers/features/node:1": { + "version": "latest" } }, @@ -37,8 +36,5 @@ // "postCreateCommand": "mvn compile", // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. - "remoteUser": "vscode", - "features": { - "docker-from-docker": "latest" - } + "remoteUser": "vscode" } |
