28 lines
866 B
YAML
28 lines
866 B
YAML
services:
|
|
cineasthesia-landing:
|
|
build: .
|
|
container_name: cineasthesia-landing
|
|
restart: unless-stopped
|
|
networks:
|
|
- traefik-public
|
|
- mailcow-network
|
|
environment:
|
|
- SMTP_HOST=mailcowdockerized-postfix-mailcow-1
|
|
- SMTP_PORT=587
|
|
- SMTP_USER=${SMTP_USER}
|
|
- SMTP_PASS=${SMTP_PASS}
|
|
- SMTP_FROM=${SMTP_FROM:-noreply@jeffemmett.com}
|
|
- CONTACT_TO=noire.michelle@gmail.com
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.cineasthesia-landing.rule=Host(`cineasthesia.com`) || Host(`www.cineasthesia.com`)"
|
|
- "traefik.http.routers.cineasthesia-landing.entrypoints=web"
|
|
- "traefik.http.services.cineasthesia-landing.loadbalancer.server.port=80"
|
|
|
|
networks:
|
|
traefik-public:
|
|
external: true
|
|
mailcow-network:
|
|
external: true
|
|
name: mailcowdockerized_mailcow-network
|