mirror of
https://github.com/andrewkdinh/simple-contact.git
synced 2024-10-10 08:14:45 -07:00
20 lines
514 B
YAML
20 lines
514 B
YAML
version: '2.0'
|
|
services:
|
|
simple-contact:
|
|
container_name: simple-contact
|
|
build:
|
|
context: .
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8672:80
|
|
depends_on:
|
|
- rust-captcha
|
|
environment:
|
|
- HTTP_ENDPOINT=${HTTP_ENDPOINT} # Send messages to this endpoint
|
|
- ESCAPE_HTML=${ESCAPE_HTML} # Whether the contents of the message should be escaped for HTML
|
|
rust-captcha:
|
|
container_name: rust-captcha
|
|
build:
|
|
context: ../rust-captcha/docker
|
|
restart: unless-stopped
|