Create docker-compose.yml

This commit is contained in:
Kevin Veen-Birkenbach 2025-01-10 18:30:59 +01:00 committed by GitHub
parent ae6eb6d802
commit 1395304a35
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

14
docker-compose.yml Normal file
View File

@ -0,0 +1,14 @@
version: '3.8'
services:
landingpage:
build:
context: .
dockerfile: Dockerfile
image: application-landingpage
container_name: landingpage
ports:
- "5000:5000"
volumes:
- ./app:/app
restart: unless-stopped