planpost-offer-landing/docker-compose.yml
2025-04-10 15:54:40 +06:00

19 lines
287 B
YAML

version: "3.8"
services:
webapp:
container_name: webapp
build:
context: .
dockerfile: Dockerfile
restart: always
ports:
- "3000:3000"
networks:
- coolify
environment:
- NODE_ENV=production
networks:
coolify:
external: true