From d95efac8ae95b705eeca44a75bdce04d0d44f6d0 Mon Sep 17 00:00:00 2001 From: icyleaf Date: Sat, 11 May 2024 03:12:40 +0000 Subject: [PATCH] chore: remove overmind dependency --- .devcontainer/Dockerfile.base | 7 ------- .devcontainer/devcontainer.json | 7 +++++-- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/.devcontainer/Dockerfile.base b/.devcontainer/Dockerfile.base index 2714acb1e..382934e4f 100644 --- a/.devcontainer/Dockerfile.base +++ b/.devcontainer/Dockerfile.base @@ -33,13 +33,6 @@ RUN curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | gpg --de ENV ZEALOT_PATH=/workspace -# Install overmind -ARG OVERMIND_VERSION="2.4.0" -RUN curl -L https://github.com/DarthSim/overmind/releases/download/v${OVERMIND_VERSION}/overmind-v${OVERMIND_VERSION}-linux-amd64.gz > overmind.gz \ - && gunzip overmind.gz \ - && sudo mv overmind /usr/local/bin \ - && chmod +x /usr/local/bin/overmind - USER vscode # Install asdf, ruby (with YJIT enabled) and nodejs diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index eb018e911..66a25d2e6 100755 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -33,16 +33,19 @@ } }, - "forwardPorts": [3000, 5432, 6379, 8081], + "forwardPorts": [3000, 5432, 8081], "portsAttributes": { "3000": { - "label": "rails server (puma)" + "label": "rails server" }, "5432": { "label": "postgres server" }, "8081": { "label": "pgweb server" + }, + "9293": { + "label": "puma" } },