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

Latest commit

History

History
52 lines (36 loc) 路 908 Bytes

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