switch docker-compose to local build

This commit is contained in:
2021-07-28 22:28:34 +02:00
parent 54f1c0f242
commit 5a84ba0689
2 changed files with 14 additions and 6 deletions

View File

@ -6,7 +6,7 @@ version: "3"
services:
ki_backend:
image: registry.wtf-eg.net/ki-backend:latest
build: .
restart: "no"
ports:
- "13338:5000"
@ -14,9 +14,9 @@ services:
- "./env.dev:/app/.env"
ki_frontend:
image: registry.wtf-eg.net/ki-frontend:latest
build: ./../ki-frontend
restart: "no"
ports:
- "13337:80"
environment:
VUE_APP_API_URL: http://localhost:13338
volumes:
- "../ki-frontend/public/config.js.int:/user/share/nginx/html/config.js"