https://github.com/dbushell/docker-ubuntu
🐳 A configured Ubuntu sandbox development container
https://github.com/dbushell/docker-ubuntu
Last synced: 24 days ago
JSON representation
🐳 A configured Ubuntu sandbox development container
- Host: GitHub
- URL: https://github.com/dbushell/docker-ubuntu
- Owner: dbushell
- License: mit
- Archived: true
- Created: 2021-02-12T10:41:23.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-01-29T09:48:40.000Z (over 1 year ago)
- Last Synced: 2025-02-25T06:45:09.546Z (3 months ago)
- Language: Dockerfile
- Homepage:
- Size: 83 KB
- Stars: 8
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🐳 Ubuntu Docker Sandbox
A configured Ubuntu 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/ubuntu
```Docker CLI:
```sh
docker run -d \
--name=ubuntu_sandbox \
ghcr.io/dbushell/ubuntu \
&& docker exec -it ubuntu_sandbox zsh
```Docker Compose:
```yml
services:
ubuntu:
container_name: ubuntu_sandbox
image: ghcr.io/dbushell/ubuntu
``````sh
docker compose up -d \
&& docker exec -it ubuntu_sandbox zsh
```(Enter `exit` to escape the container.)
### Shell Access
```sh
docker exec -it ubuntu_sandbox zsh
```### Clean Up
```sh
docker stop ubuntu_sandbox && docker rm ubuntu_sandbox
```* * *
[MIT License](/LICENSE) | Copyright © 2024 [David Bushell](https://dbushell.com)