Files
website/apps/website/docker-compose.yml
matt ec72c5d62b
Some checks failed
build-website / build (push) Failing after 1m2s
Initial import of HarborSmith website
2025-09-18 22:20:01 +02:00

22 lines
523 B
YAML

version: '3.8'
services:
harborsmith-website:
build:
context: .
dockerfile: Dockerfile
container_name: harborsmith-website
ports:
- "3001:80"
restart: unless-stopped
networks:
- harborsmith-network
labels:
- "traefik.enable=true"
- "traefik.http.routers.harborsmith-website.rule=Host(`localhost`)"
- "traefik.http.services.harborsmith-website.loadbalancer.server.port=80"
networks:
harborsmith-network:
external: true
name: harborsmith_default