23 lines
715 B
Plaintext
23 lines
715 B
Plaintext
# DocuSeal compose template. Replace __ENTITY_SLUG__ and __HOST_PORT__.
|
|
# One instance per legal entity. Do not reuse a container_name or host port.
|
|
# Newer docuseal:latest bundles Redis + Sidekiq internally, so no separate
|
|
# redis/sidekiq services are needed. It may log a harmless memory overcommit
|
|
# warning.
|
|
services:
|
|
docuseal:
|
|
image: docuseal/docuseal:latest
|
|
container_name: docuseal-__ENTITY_SLUG__
|
|
restart: always
|
|
ports:
|
|
# 3000 inside the container. Host 3000 is browserless on Core.
|
|
- "127.0.0.1:__HOST_PORT__:3000"
|
|
volumes:
|
|
- ./data:/data
|
|
env_file:
|
|
- .env
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|