docker config

This commit is contained in:
2025-08-11 17:10:06 +02:00
parent 6a4cce9048
commit 38b53c80a5
6 changed files with 66 additions and 1 deletions

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
version: "3.9"
services:
backend:
build:
context: .
dockerfile: backend/Dockerfile
container_name: my-backend
restart: unless-stopped
frontend:
build:
context: .
dockerfile: frontend/Dockerfile
container_name: my-frontend
ports:
- "6080:80"
restart: unless-stopped