Skip to content

Commit 91a2990

Browse files
authored
Add how to clone (#37)
1 parent 452bf48 commit 91a2990

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

software/README.md

+11
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,16 @@ Edit the options for image customization:
5050

5151
Write the changes to the SD card.
5252

53+
## Clone the repository
54+
As this repository uses git submodules, use the following to clone it.
55+
```bash
56+
git clone https://github.com/mniedermaier/CybICS.git --recursive
57+
```
58+
59+
If you have already cloned it without the `--recursive` flag, you can do this to also get the submodules afterwards:
60+
```
61+
git submodule update --init --recursive
62+
```
5363

5464
## Execute installation script
5565
Install docker compose.
@@ -59,6 +69,7 @@ sudo apt install docker-compose
5969

6070
Start the container and execute the installation script.
6171
```sh
72+
cd CybICS
6273
docker compose -f .devcontainer/software/docker-compose.yml up -d --build
6374
docker compose -f .devcontainer/software/docker-compose.yml exec dev /CybICS/software/installRPI.sh
6475
```

0 commit comments

Comments
 (0)