mirror of
https://github.com/arthur-pbty/formcraft.git
synced 2026-08-01 20:29:03 +02:00
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:
|