https://github.com/dbushell/docker-debian
🐳 A configured Debian sandbox development container
https://github.com/dbushell/docker-debian
Last synced: 11 months ago
JSON representation
🐳 A configured Debian sandbox development container
- Host: GitHub
- URL: https://github.com/dbushell/docker-debian
- Owner: dbushell
- License: mit
- Archived: true
- Created: 2023-07-03T07:45:59.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-29T09:38:51.000Z (about 2 years ago)
- Last Synced: 2025-02-25T06:45:12.378Z (about 1 year ago)
- Language: Dockerfile
- Homepage:
- Size: 31.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🐳 Debian Docker Sandbox
A configured Debian sandbox container with Zsh and Starship shell prompt. Also with Vim, Git, Deno, Bun, and Node.
[Why does this exists?](https://dbushell.com/2021/02/22/macos-big-reinstall-docker-traefik-localhost/)
## Usage
```sh
docker pull ghcr.io/dbushell/debian
```
Docker CLI:
```sh
docker run -d \
--name=debian_sandbox \
ghcr.io/dbushell/debian \
&& docker exec -it debian_sandbox zsh
```
Docker Compose:
```yml
services:
debian:
container_name: debian_sandbox
image: ghcr.io/dbushell/debian
```
```sh
docker compose up -d \
&& docker exec -it debian_sandbox zsh
```
(Enter `exit` to escape the container.)
### Shell Access
```sh
docker exec -it debian_sandbox zsh
```
### Clean Up
```sh
docker stop debian_sandbox && docker rm debian_sandbox
```
* * *
[MIT License](/LICENSE) | Copyright © 2024 [David Bushell](https://dbushell.com)