28 lines
576 B
YAML
28 lines
576 B
YAML
version: "3.9"
|
|
|
|
networks:
|
|
reverse-proxy:
|
|
external: true
|
|
|
|
volumes:
|
|
mailform_db:
|
|
mailform_assets:
|
|
|
|
services:
|
|
mailform-app:
|
|
build: .
|
|
container_name: mailform-aquila
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=Europe/Bucharest
|
|
- VIRTUAL_HOST=mailform.northdanubesoft.eu
|
|
- VIRTUAL_PORT=5000
|
|
- LETSENCRYPT_HOST=mailform.northdanubesoft.eu
|
|
- LETSENCRYPT_EMAIL=macamete.robert@gmail.com
|
|
expose:
|
|
- "5000"
|
|
volumes:
|
|
- mailform_db:/app/data
|
|
- mailform_assets:/app/static
|
|
networks:
|
|
- reverse-proxy |