Skip to content

Commit

Permalink
chore: remove overmind dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
icyleaf committed May 11, 2024
1 parent 4a91ac5 commit d95efac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
7 changes: 0 additions & 7 deletions .devcontainer/Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 5 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
},

Expand Down

0 comments on commit d95efac

Please sign in to comment.