File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ This is the default implementation of the [cloudpipe authentication backend prot
9
9
## Getting Started
10
10
11
11
1 . Install [ Docker] ( https://docs.docker.com/installation/mac/ ) on your system.
12
- 2 . Install [ fig ] ( http ://www.fig.sh/ install.html ) .
12
+ 2 . Install [ Compose ] ( https ://docs.docker.com/compose/ install/ ) .
13
13
3 . Use ` script/genkeys ` to generate self-signed TLS keypairs in ` certificates/ ` .
14
- 4 . Run ` fig build && fig up -d` to build and launch everything locally.
14
+ 4 . Run ` docker-compose build && docker-compose up -d` to build and launch everything locally.
15
15
16
16
To run the tests, use ` script/test ` . You can also use ` script/mongo ` to connect to your local MongoDB database.
17
17
File renamed without changes.
Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ set -o errexit
5
5
ROOT=$( dirname $0 ) /..
6
6
cd ${ROOT}
7
7
8
- fig build > /dev/null 2>&1 || echo " fig build failed!"
8
+ docker-compose build > /dev/null 2>&1 || echo " docker-compose build failed!"
9
9
10
- exec fig run --no-deps --rm authstore go test github.com/cloudpipe/auth-store/... $@
10
+ exec docker-compose run --no-deps --rm authstore go test github.com/cloudpipe/auth-store/... $@
You can’t perform that action at this time.
0 commit comments