From c7ee3ec6e26c9034e385e472bf9472cb192f5f5c Mon Sep 17 00:00:00 2001 From: Sunshine Date: Thu, 11 Mar 2021 22:27:44 -1000 Subject: [PATCH] get rid of containers.md (now part of README.md) --- docs/containers.md | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 docs/containers.md diff --git a/docs/containers.md b/docs/containers.md deleted file mode 100644 index 08cec96..0000000 --- a/docs/containers.md +++ /dev/null @@ -1,15 +0,0 @@ -1. Run `docker build -t y2z/monolith .` to create a Docker image - -2. Create a file named `monolith` which contains: -```sh -#!/bin/sh - -docker run --rm \ - y2z/monolith \ - monolith \ - "$@" -``` -3. Make the file executable (`chmod +x monolith`) and include it into your `$PATH` -4. Now you should be able to run a containerized build of monolith like this: -`monolith -I https://github.com > document.html` -