version: '3'
|
|
|
|
services:
|
|
listener:
|
|
build: ./wordpress_webhook
|
|
container_name: wordpress_webhook_listener
|
|
environment:
|
|
- VIRTUAL_HOST=<your.domain.com>
|
|
- LETSENCRYPT_HOST=<your.domain.com>
|
|
- LETSENCRYPT_EMAIL=<your@email.address>
|
|
expose:
|
|
- 54321
|
|
restart: unless-stopped
|
|
networks:
|
|
- letsencrypt_proxy
|
|
|
|
networks:
|
|
letsencrypt_proxy:
|
|
external: true
|