mirror of
https://github.com/MrUnknownDE/utools.git
synced 2026-04-05 16:22:00 +02:00
16 lines
404 B
YAML
16 lines
404 B
YAML
# compose.build.yml
|
|
services:
|
|
backend:
|
|
# Definiert, wie das Image gebaut wird
|
|
build:
|
|
context: ./backend
|
|
args:
|
|
- GIT_COMMIT_SHA=${GIT_COMMIT_SHA:-unknown}
|
|
- SENTRY_DSN=${SENTRY_DSN:-}
|
|
image: mrunknownde/utools-backend:latest
|
|
|
|
frontend:
|
|
# Definiert, wie das Image gebaut wird
|
|
build:
|
|
context: ./frontend
|
|
image: mrunknownde/utools-frontend:latest |