Add Docker-Compose setup with configurable local port via .env.

Document container startup and local port configuration in README, including a .env example for quick setup.

Made-with: Cursor
This commit is contained in:
2026-04-02 18:44:07 +02:00
parent 1c9fc93314
commit e6fbe84d58
3 changed files with 41 additions and 0 deletions

8
docker-compose.yml Normal file
View File

@@ -0,0 +1,8 @@
services:
datecalc:
build:
context: .
dockerfile: Dockerfile
ports:
- "${LOCAL_PORT:-5000}:5000"
restart: unless-stopped