You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/docker-compose.yml

17 lines
571 B

services:
app:
build: .
image: intebec/docuseal:latest
ports:
- 3000:3000
volumes:
- ./docuseal:/data/docuseal
- ${INTEBEC_CONFIG_FILE:-./config/config.yml}:/run/secrets/config.yml:ro
environment:
- FORCE_SSL=${HOST}
# File mode: mount a config.yml (see volumes below).
# API mode: remove the volume mount and set INTEBEC_LICENCE_KEY + INTEBEC_SECRET_KEY.
- INTEBEC_CONFIG_PATH=/run/secrets/config.yml
- INTEBEC_LICENCE_KEY=${INTEBEC_LICENCE_KEY:-}
- INTEBEC_SECRET_KEY=${INTEBEC_SECRET_KEY:-}