mirror of
https://github.com/MrUnknownDE/utools.git
synced 2026-04-09 18:03:52 +02:00
16 lines
420 B
YAML
16 lines
420 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: ghcr.io/mrunknownde/utools-backend:latest
|
|
|
|
frontend:
|
|
# Definiert, wie das Image gebaut wird
|
|
build:
|
|
context: ./frontend
|
|
image: ghcr.io/mrunknownde/utools-frontend:latest |