summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorNikolaos Boutalas <nikolaos@boutalas.me>2023-08-07 12:54:09 +0300
committerNikolaos Boutalas <nikolaos@boutalas.me>2023-08-07 12:54:09 +0300
commit3e3ec9c41beecdf119ea8e80dd6da5e5ab7adbde (patch)
tree2bbc2eb03c76ef987e3c17537b52d62831329590 /README.md
parentad3fa4fef6af05bbc51768785a0d06f110fdd9c5 (diff)
Introduce Fedora Dockerfile
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index 935b160..bca2782 100644
--- a/README.md
+++ b/README.md
@@ -2,12 +2,13 @@
## Development
-In order to test this, you can use *Docker* and build a simple Ubuntu container
+In order to test this, you can use *Docker* and build a simple Linux container
```bash
git clone git@github.com:nikolaosboutalas/init.git
cd init
- docker build . -t ansible && docker run --rm -it ansible
+ # Build a docker container with the specified distribution
+ docker build . -t ansible -f Dockerfile.<distribution> && docker run --rm -it ansible
# Inside the new running container
./setup.sh
```