From 87a571c89a045b80548b2866d1f26be546f1990b Mon Sep 17 00:00:00 2001 From: Hyperling Date: Tue, 11 Nov 2025 15:51:00 -0700 Subject: [PATCH] Create super simple container for playing around in. --- Config/Sandbox/docker-compose.example.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Config/Sandbox/docker-compose.example.yml diff --git a/Config/Sandbox/docker-compose.example.yml b/Config/Sandbox/docker-compose.example.yml new file mode 100644 index 0000000..7dd494b --- /dev/null +++ b/Config/Sandbox/docker-compose.example.yml @@ -0,0 +1,10 @@ +# 2025-11-11 Hyperling +# Basic container for testing commands in a blank slate environment. + +services: + app: + container_name: sandbox + image: debian:trixie-slim + command: "tail -F /var/mail/*" + volumes: + - ../../Volumes/Sandbox/root-shared:/root/shared