codespace alternative without devcontainer integration 😕, but soon
394
Based on alpine with 36Mb 😁
Here are some example snippets to help you get started creating a container.
docker run -d \
--name=crabspace \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/Paris \
-e SSH_KEY=mykey \
-v :/app `#optional`
--restart unless-stopped \
lscr.io/damienmillet/crabspace:latest
| Parameter | Function |
|---|---|
| -e PUID=1000 | for UserID - see below for explanation |
| -e PGID=1000 | for GroupID - see below for explanation |
| -e SSH_KEY=your_key | SSH public key for connection, need full containt of : cat .ssh/idxxx.pub |
| -e TZ=Europe/London | Specify a timezone to use EG Europe/London, this is required for Date |
| -v /app | Location of your app on disk |
| Soon | devcontainer file for auto fetch dependencies |
Content type
Image
Digest
sha256:3075d8f43…
Size
30.3 MB
Last updated
over 3 years ago
docker pull damienmillet/crabspace