Skip to content
Snippets Groups Projects
Commit 0de84f5a authored by Markus Matoni's avatar Markus Matoni
Browse files

feat(docker compose): change pull behavior of constrainify-core and qpm to...

feat(docker compose): change pull behavior of constrainify-core and qpm to always use the latest image
parent c6479ccc
No related branches found
No related tags found
No related merge requests found
......@@ -18,15 +18,8 @@ Users only need an affinity for quality problems and an interest in high data qu
> **Step 2** Create a secret key stored in the file `session_key.env` that looks like this: `6zgm8raxznijv7781k49ut5m9`.
> **Step 3** Make sure you have a built Docker image of constrainify-core, qpm, and mqaf.
```bash
docker pull harbor.gwdg.de/aqinda/constrainify-core
docker pull harbor.gwdg.de/aqinda/qpm
docker pull harbor.gwdg.de/aqinda/mqaf
```
> **Step 4** Use Docker to run the application:
> **Step 3** Use Docker to run the application:
```bash
docker compose up
```
> **Step 5** Go to http://localhost:8000 on any browser and enjoy Constrainfy!
\ No newline at end of file
> **Step 4** Go to http://localhost:8000 on any browser and enjoy Constrainfy!
\ No newline at end of file
version: '3.8'
services:
constrainify-core:
image: "harbor.gwdg.de/aqinda/constrainify-core"
image: "harbor.gwdg.de/aqinda/constrainify-core:latest"
pull_policy: always
environment:
APP_NAME: constrainify-core
LOG_FILENAME: /shared/constrainify-core.log
......@@ -19,7 +20,8 @@ services:
- "8000:8000"
qpm:
image: "harbor.gwdg.de/aqinda/qpm"
image: "harbor.gwdg.de/aqinda/qpm:latest"
pull_policy: always
environment:
SHARED_VOLUME: /shared
UPLOAD_FOLDER: /shared/uploads
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment