From d34c6ae0d4b65621d65aacce11415b24e9330c14 Mon Sep 17 00:00:00 2001 From: Marco Crapts Date: Tue, 1 Apr 2025 21:19:46 +0200 Subject: [PATCH] initial commit --- Makefile | 6 ++++++ docker-compose.yml | 5 +++++ 2 files changed, 11 insertions(+) create mode 100644 Makefile create mode 100644 docker-compose.yml diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..baefc78 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +docker/run: + docker run -it --rm busybox nslookup nu.nl + +docker/compose: + docker compose up -d + docker compose exec -it busybox nslookup 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