From 82f108e88238c795c9db2e8249246e5884d4c765 Mon Sep 17 00:00:00 2001 From: Josh Shippam Date: Tue, 24 Jun 2025 21:07:33 +0000 Subject: [PATCH] Add Dev Container --- .devcontainer/devcontainer.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100755 index 00000000..fbde4932 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,18 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/java +{ + "name": "Java", + // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile + "image": "maven:3.9.10-eclipse-temurin-8", + + // Use 'forwardPorts' to make a list of ports inside the container available locally. + "forwardPorts": [43594, 43595, 8080], + + // Configure tool-specific properties. + "customizations" : { + "jetbrains" : { + "backend" : "IntelliJ" + } + }, + +}