Skip to content

Commit

Permalink
Fix docker-compose to specific image version by default
Browse files Browse the repository at this point in the history
  • Loading branch information
milot-mirdita committed Jun 12, 2019
1 parent 8372227 commit 01904a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions docker-compose/.env
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
PORT=8877
TAG=version-2
6 changes: 3 additions & 3 deletions docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
- redis-volume:/var/lib/redis

mmseqs-web-api:
image: soedinglab/mmseqs2-app-backend
image: "soedinglab/mmseqs2-app-backend:${TAG}"
command: -server -config /etc/mmseqs-web/config.json
depends_on:
- mmseqs-web-redis
Expand All @@ -19,7 +19,7 @@ services:
- ./jobs:/opt/mmseqs-web/jobs

mmseqs-web-worker:
image: soedinglab/mmseqs2-app-backend
image: "soedinglab/mmseqs2-app-backend:${TAG}"
command: -worker -config /etc/mmseqs-web/config.json
depends_on:
- mmseqs-web-api
Expand All @@ -32,7 +32,7 @@ services:
- /tmp:exec

mmseqs-web-webserver:
image: soedinglab/mmseqs2-app-frontend
image: "soedinglab/mmseqs2-app-frontend:${TAG}"
depends_on:
- mmseqs-web-api
volumes:
Expand Down

0 comments on commit 01904a7

Please sign in to comment.