Containerfile and compose

This commit is contained in:
2025-09-20 13:59:25 +02:00
parent a69b8a9c55
commit 9017888794
4 changed files with 42 additions and 2 deletions

10
compose.yaml Normal file
View File

@ -0,0 +1,10 @@
services:
recurring-event-api:
restart: unless-stopped
container_name: recurring-event-api
image: recurring-event-api
build:
dockerfile: Containerfile
context: .
ports:
- "8095:8000"