add integration docker-compose file

This commit is contained in:
2021-07-26 21:52:29 +02:00
parent 178381b00c
commit 54f1c0f242
3 changed files with 34 additions and 3 deletions

22
docker-compose.yml Normal file
View File

@ -0,0 +1,22 @@
# SPDX-FileCopyrightText: 2021 WTF Kooperative eG <https://wtf-eg.de/>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
version: "3"
services:
ki_backend:
image: registry.wtf-eg.net/ki-backend:latest
restart: "no"
ports:
- "13338:5000"
volumes:
- "./env.dev:/app/.env"
ki_frontend:
image: registry.wtf-eg.net/ki-frontend:latest
restart: "no"
ports:
- "13337:80"
environment:
VUE_APP_API_URL: http://localhost:13338