commit d34c6ae0d4b65621d65aacce11415b24e9330c14 Author: Marco Crapts Date: Tue Apr 1 21:19:46 2025 +0200 initial commit 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