Files
joeac.net/compose.yml
T
2026-05-03 20:00:48 +01:00

42 lines
820 B
YAML

services:
capsule:
image: git.joeac.net/joeac/capsule
build:
context: .
dockerfile: capsule.Dockerfile
ports:
- "1965:1965"
website:
image: git.joeac.net/joeac/website
build:
context: .
dockerfile: website.Dockerfile
args:
LOCAL_SMTP_HOST: smtp
LOCAL_SMTP_PORT: 2500
LOCAL_SMTP_PASSWORD: smtp
env_file:
- .env
ports:
- "8000:4321"
smtp:
image: git.joeac.net/joeac/smtp
build:
context: smtp
args:
LOCAL_SMTP_PORT: 2500
env_file:
- .env
environment:
LOCAL_SMTP_PORT: 2500
LOCAL_SMTP_PASSWORD: smtp
REMOTE_SMTP_PASSWORD_FILE: /run/secrets/remote_smtp_password
secrets:
- remote_smtp_password
secrets:
remote_smtp_password:
external: true