summaryrefslogtreecommitdiffstats
path: root/docs/web/docker.txt
diff options
context:
space:
mode:
authorMalfurious <m@lfurio.us>2024-02-22 03:05:47 -0500
committerMalfurious <m@lfurio.us>2024-02-22 03:05:47 -0500
commit2496fbbd23d6ae350032f2e87b1d77c9a6dc8ec4 (patch)
treea51fe8e90e17eb21dd0d9878f40a32e312d0ae9e /docs/web/docker.txt
parent6bd3b3f194d10bca2d8e45a64e94c2e05b8a9d21 (diff)
parentf5673a402720fea58337d9dd1090b2625ae5f073 (diff)
downloadlib-des-gnux-2496fbbd23d6ae350032f2e87b1d77c9a6dc8ec4.tar.gz
lib-des-gnux-2496fbbd23d6ae350032f2e87b1d77c9a6dc8ec4.zip
Merge branch 'malf-lactf-2024'
* malf-lactf-2024: Update docker guide x86 register correction lactf 2024 results
Diffstat (limited to 'docs/web/docker.txt')
-rw-r--r--docs/web/docker.txt15
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/web/docker.txt b/docs/web/docker.txt
deleted file mode 100644
index 992b5b3..0000000
--- a/docs/web/docker.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-# TODO: This whole doc
-
-docker run -p host:container
- Run container with port forwarding
-
-docker run --rm -d --network host --name <something> <image-id>
- --rm Destroy container on exit
- -d Run detached (don't hijack terminal)
- --net... Use host's network (don't need port forward)
-
-docker exec -it
- Get a shell in container
-
-
-I'm told docker-compose is just much simpler, try to use if possible.