Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Latest commit

 

History

History
52 lines (36 loc) · 908 Bytes

README.md

File metadata and controls

52 lines (36 loc) · 908 Bytes

🐳 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?

Usage

docker pull ghcr.io/dbushell/ubuntu

Docker CLI:

docker run -d \
  --name=ubuntu_sandbox \
  ghcr.io/dbushell/ubuntu \
  && docker exec -it ubuntu_sandbox zsh

Docker Compose:

services:
  ubuntu:
    container_name: ubuntu_sandbox
    image: ghcr.io/dbushell/ubuntu
docker compose up -d \
  && docker exec -it ubuntu_sandbox zsh

(Enter exit to escape the container.)

Shell Access

docker exec -it ubuntu_sandbox zsh

Clean Up

docker stop ubuntu_sandbox && docker rm ubuntu_sandbox

MIT License | Copyright © 2024 David Bushell