24 lines
442 B
YAML
24 lines
442 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
fuz-site:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: fuz-site
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- FUZ_DB_PATH=/app/data/ServicesRange.db
|
|
- SMTP_FROM_NAME="Formularz kontaktowy FUZ"
|
|
- SMTP_TO="cieniu2009@gmail.com"
|
|
ports:
|
|
- "4000:4321"
|
|
networks:
|
|
- n8n_default
|
|
|
|
networks:
|
|
n8n_default:
|
|
external: true
|