mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:21:10 +02:00
feat(storage): add storage to CD pipeline and fix Docker config
- Add build context to storage-web in docker-compose (was pulling from GHCR, now builds locally like other services) - Add storage-backend and storage-web to CD change detection and deploy - Fix mukke health check URLs (were using wrong ports 3035/5015) - Remove hardcoded port from Dockerfile (use PORT env var from compose) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
97b610020c
commit
93a7c90f4f
3 changed files with 21 additions and 13 deletions
|
|
@ -1446,7 +1446,13 @@ services:
|
|||
start_period: 40s
|
||||
|
||||
storage-web:
|
||||
image: ghcr.io/memo-2023/storage-web:latest
|
||||
build:
|
||||
context: .
|
||||
dockerfile: apps/storage/apps/web/Dockerfile
|
||||
args:
|
||||
PUBLIC_BACKEND_URL: http://storage-backend:3035
|
||||
PUBLIC_MANA_CORE_AUTH_URL: http://mana-auth:3001
|
||||
image: storage-web:local
|
||||
container_name: mana-app-storage-web
|
||||
restart: always
|
||||
depends_on:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue