You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 lines
622 B

services:
web:
build:
context: .
dockerfile: Dockerfile
args:
NEXT_PUBLIC_API_BASE_URL: https://habibapp.com
ports:
- "5561:3000"
environment:
- NODE_ENV=production
- NEXT_PUBLIC_API_BASE_URL=https://habibapp.com
- NEXT_PUBLIC_SECURITY_KEY=t5yugymks5458fd4ghfg6h6
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
networks:
- najm_najm
networks:
najm_najm:
external: true