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.
 
 
 
 

18 lines
401 B

services:
web:
build:
context: .
dockerfile: Dockerfile
image: teamby-landing:latest
container_name: teamby_landing
restart: unless-stopped
env_file:
- .env.prod
ports:
- "8065:3000"
healthcheck:
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:3000/ || exit 1"]
interval: 30s
timeout: 5s
retries: 3
start_period: 15s