Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yuneg11/docker-envs
Personal docker images
https://github.com/yuneg11/docker-envs
docker
Last synced: 9 days ago
JSON representation
Personal docker images
- Host: GitHub
- URL: https://github.com/yuneg11/docker-envs
- Owner: yuneg11
- Created: 2021-05-20T17:59:31.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-05-15T12:03:41.000Z (6 months ago)
- Last Synced: 2024-05-16T01:50:27.162Z (6 months ago)
- Topics: docker
- Language: Shell
- Homepage:
- Size: 56.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker-Envs
## `vessl-env`
### Build
- Development build:
```bash
cd vessl-env
./build.sh # TAG will be automatically set as `dev-yymmddHHMM`
```- Release build:
```bash
cd vessl-env
./build.sh
```- Tag existing image:
```bash
docker tag ghcr.io//:
```### Test
- Run container
```bash
docker run -t -d /bin/sh
```- Open shell in container
```bash
docker exec -it /bin/bash
# or
docker exec -it /bin/zsh
```- Stop container
```bash
docker stop
```- Delete container
```bash
docker rm
# or
docker container rm
# or
docker container prune # remove all stopped containers
```- Delete image
```bash
docker rmi
# or
docker image rm
```### Push image
- Register
```bash
docker push ghcr.io//:
```- Delete
```bash
curl -X DELETE https://ghcr.io/v2/ubuntu/manifests/sha256:
```