Ghost docker-compose.yaml
Posted on
Ghost docker compose include SES for SMTP and Nginx Proxy Manager
version: '3.3'
services:
ghost:
image: 'ghost:4.32.3'
container_name: ghost-service
volumes:
- '/home/sumar/ghost/data:/var/lib/ghost/content'
restart: unless-stopped
environment:
url: http://ghost.sumarsono.com
mail__from: [email protected]
mail__transport: SMTP
mail__options__host: SES-SMTP-host
mail__options__port: SES-SMTP-port
mail__options__service: SES
mail__options__auth__user: SES-SMTP-username
mail__options__auth__pass: SES-SMTP-password
networks:
default:
external: true
name: nginx-proxy-manager