Files

19 lines
412 B
YAML
Raw Permalink Normal View History

2026-05-25 09:12:22 +03:30
services:
web:
build:
context: .
dockerfile: Dockerfile
args:
2026-07-21 12:26:26 +03:30
PORT: ${PORT:-3000}
2026-05-25 09:12:22 +03:30
image: pasargad-bricks:latest
container_name: pasargad-bricks
restart: unless-stopped
ports:
- "${PORT:-3000}:${PORT:-3000}"
2026-05-25 09:12:22 +03:30
environment:
NODE_ENV: production
env_file:
- .env
volumes:
- ./data/contactMessages.json:/app/data/contactMessages.json