We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a815657 commit dbe09c5Copy full SHA for dbe09c5
1 file changed
docker-compose-server.yml
@@ -1,18 +1,18 @@
1
version: "2.4"
2
services:
3
backend:
4
- image: $CI_REGISTRY_IMAGE:$DOCKERIMAGE_TAG
+ image: openplatform/open-state:${{ github.event.release.tag_name }}
5
depends_on:
6
- mongo
7
mongo:
8
- image: mongo
+ image: mongo:4.4.0
9
restart: always
10
ports:
11
- 27017:27017
12
environment:
13
MONGO_INITDB_ROOT_USERNAME: open_state
14
- MONGO_INITDB_ROOT_PASSWORD: $MONGO_PASSWORD
+ MONGO_INITDB_ROOT_PASSWORD: ${{ secrets.MONGO_PASSWORD }}
15
redis:
16
- image: redis
+ image: redis:6.0.7
17
18
- 6379:6379
0 commit comments