Files
datecalc/docker-compose.yml
elpatron e6fbe84d58 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
2026-04-02 18:44:07 +02:00

9 lines
153 B
YAML

services:
datecalc:
build:
context: .
dockerfile: Dockerfile
ports:
- "${LOCAL_PORT:-5000}:5000"
restart: unless-stopped