Create docker-compose.yaml

This commit is contained in:
Elias Stepanik 2025-05-24 07:43:01 +02:00 committed by GitHub
parent 8447f41cb3
commit 7127872ed6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

9
docker-compose.yaml Normal file
View File

@ -0,0 +1,9 @@
version: "3.9"
services:
strudel-dev:
build: .
ports:
- "4321:4321" # http://localhost:4321
volumes:
- .:/usr/src/app # live-reload on file edits
restart: unless-stopped