2026-05-25 09:12:22 +03:30
|
|
|
services:
|
|
|
|
|
web:
|
|
|
|
|
build:
|
|
|
|
|
context: .
|
|
|
|
|
dockerfile: Dockerfile
|
2026-07-19 07:59:16 +03:30
|
|
|
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:
|
2026-07-19 07:59:16 +03:30
|
|
|
- "${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
|