mirror of
https://github.com/outbackdingo/homelab-v.git
synced 2026-08-25 14:53:19 +00:00
925 B
925 B
Devcontainer
The devcontainer.json file uses a pre-built image based on the configuration in the devcontainer-build.json file.
Check available Devcontainer features at https://containers.dev/features,
or edit the Containerfile.
Disclaimer: this is a fairly untested feature from the main author, feedback is welcome.
Getting started
Find the appropriate guide for your IDE, e.g.
Alternatively, you can start the devcontainer manually by running
docker run -it --rm \
--user $(id -u):$(id -g) \
--name homelab-devcontainer \
--mount target=/tmp,type=tmpfs \
--mount type=bind,src=.,dst=/workspace \
--workdir /workspace \
ghcr.io/vehagn/homelab-devcontainer:latest
from the project root.