Skip to content

Commit ac7cbfd

Browse files
authored
Merge pull request #68 from carlosms/issue-66
Update docker-compose to a fixed bblfshd version
2 parents b8fca70 + 9911390 commit ac7cbfd

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docker-compose.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@ services:
88
environment:
99
GITBASEPG_ENV: ${GITBASEPG_ENV}
1010
GITBASEPG_DB_CONNECTION: gitbase@tcp(gitbase:3306)/none?maxAllowedPacket=4194304
11+
depends_on:
12+
- gitbase
1113
gitbase:
1214
image: "srcd/gitbase"
1315
environment:
1416
BBLFSH_ENDPOINT: bblfsh:9432
1517
volumes:
1618
- ${GITBASEPG_REPOS_FOLDER}:/opt/repos
1719
bblfsh:
18-
image: "bblfsh/bblfshd"
20+
image: "bblfsh/bblfshd:v2.5.0"
1921
privileged: true
2022
volumes:
2123
- type: volume

docs/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Everytime you want to add a new repository to gitbase, the application should be
3535
Run the [latest released version of the frontend](https://hub.docker.com/r/srcd/gitbase-playground/tags/):
3636

3737
```bash
38-
$ docker-compose pull playground
38+
$ docker-compose pull --include-deps playground
3939
$ GITBASEPG_REPOS_FOLDER=./repos docker-compose up --force-recreate
4040
```
4141

0 commit comments

Comments
 (0)