forked from kompetenzinventar/ki-backend
23 lines
447 B
YAML
23 lines
447 B
YAML
# SPDX-FileCopyrightText: 2021 WTF Kooperative eG <https://wtf-eg.de/>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
version: "3"
|
|
|
|
services:
|
|
ki_backend:
|
|
build: .
|
|
restart: "no"
|
|
ports:
|
|
- "13338:5000"
|
|
volumes:
|
|
- "./env.dev:/app/.env"
|
|
|
|
ki_frontend:
|
|
build: ./../ki-frontend
|
|
restart: "no"
|
|
ports:
|
|
- "13337:80"
|
|
volumes:
|
|
- "../ki-frontend/public/config.js.int:/user/share/nginx/html/config.js"
|