use https to clone git repo

This commit is contained in:
Maxime Deravet
2018-09-19 15:59:36 -07:00
committed by Jérôme Petazzoni
parent 32e1edc2a2
commit 2406e72210
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ fi
- Clone the repository on `node1`:
```bash
git clone git://@@GITREPO@@
git clone https://@@GITREPO@@
```
]

View File

@@ -33,7 +33,7 @@ TOKEN=$(docker swarm join-token -q manager)
for N in $(seq 2 5); do
DOCKER_HOST=tcp://node$N:2375 docker swarm join --token $TOKEN node1:2377
done
git clone git://@@GITREPO@@
git clone https://@@GITREPO@@
cd container.training/stacks
docker stack deploy --compose-file registry.yml registry
docker-compose -f dockercoins.yml build