mirror of
https://github.com/arthur-pbty/form.git
synced 2026-06-03 23:36:34 +02:00
273dd700e9
Co-authored-by: Copilot <copilot@github.com>
22 lines
380 B
YAML
22 lines
380 B
YAML
services:
|
|
formcraft:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: formcraft
|
|
container_name: formcraft
|
|
init: true
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
NODE_ENV: production
|
|
PORT: 3000
|
|
ports:
|
|
- "${WEB_PORT:-3000}:3000"
|
|
volumes:
|
|
- formcraft_data:/app/data
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
formcraft_data:
|