diff options
author | Nikolaos Boutalas <nikolaos@boutalas.me> | 2024-01-05 03:50:50 +0200 |
---|---|---|
committer | Nikolaos Boutalas <nikolaos@boutalas.me> | 2024-03-17 11:48:24 +0200 |
commit | 7217241c87516875cc6f882a9125403b97bf3e06 (patch) | |
tree | 3ddfc0e0d85d41fe141b87c099f82f676bfac545 /README.md | |
parent | 77475705a59c9c347e8face58cf17b051f84f63e (diff) |
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2,13 +2,13 @@ ## Development -In order to test this, you can use *Docker* and build a simple Linux container +In order to test this, you can use *Docker* ```bash - $ git clone git@github.com:nikolaosboutalas/init.git + $ git clone --recurse-submodules https://github.com/nikolaosboutalas/init.git $ cd init - # Build a docker container with the specified distribution - $ docker build . -t ansible -f Dockerfile.<distribution> && docker run --rm -it ansible + # Build and run the docker container + $ docker build . -t ansible && docker run --rm -it ansible # Inside the new running container $ ansible-playbook local.yml ``` |