13 lines
330 B
YAML
13 lines
330 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
production-frontend:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: notjustan-agency-frontend
|
|
restart: unless-stopped
|
|
# Depending on Coolify's proxy configuration, exposing port 80 allows Traefik/Caddy to automatically route domain traffic
|
|
ports:
|
|
- "80"
|