commit 4900501c0acc7e9124b9507ab1e0ce388ca1d290 Author: Marco Crapts Date: Tue Apr 1 21:16:42 2025 +0200 initial commit diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d7f4b26 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +docker/run: + docker run -it --rm busybox ping nu.nl + +docker/compose: + docker compose up -d + docker compose exec -it busybox ping nu.nl diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..e352da2 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,5 @@ +services: + busybox: + image: busybox + tty: true + command: /bin/sh