From 97666c94ede1cfe0c045fe0c10a9aa69a71f78ef Mon Sep 17 00:00:00 2001 From: Matt Burke Date: Mon, 15 Sep 2025 22:35:52 -0400 Subject: [PATCH] Use a microsoft image, this will work better with desktop-lite so that vnc works --- .devcontainer/devcontainer.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index dd36c33..f82b87d 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -2,15 +2,15 @@ // README at: https://github.com/devcontainers/templates/tree/main/src/java { "name": "Java", - "image": "ghcr.io/league-infrastructure/jtljava:latest", + "image": "mcr.microsoft.com/devcontainers/java:21-bookworm", + + "containerEnv": { + "SDL_VIDEO_WINDOW_POS": "0,0", // GUI Windows all the way in the upper left. + "SDL_AUDIODRIVER": "dummy" // Disable audio + }, "features": { - "ghcr.io/devcontainers/features/java:1": { - "version": "none", - "installMaven": "false", - "installGradle": "false" - }, - "ghcr.io/devcontainers/features/desktop-lite:1": { + "ghcr.io/devcontainers/features/desktop-lite:1.2.7": { "password" : "code4life" } },