coolify/templates/compose/openblocks.yaml

22 lines
712 B
YAML
Raw Normal View History

2024-02-20 17:08:16 +01:00
# documentation: https://openblocks.dev
2023-10-25 20:13:45 +02:00
# slogan: OpenBlocks is a self-hosted, open-source, low-code platform for building internal tools.
# tags: openblocks,low,code,platform,open,source,low,code
2024-02-20 17:08:16 +01:00
# logo: svgs/openblocks.svg
2024-03-12 20:03:11 +01:00
# port: 3000
2023-10-25 20:13:45 +02:00
services:
openblocks:
image: openblocksdev/openblocks-ce
environment:
2024-03-12 20:03:11 +01:00
- SERVICE_FQDN_OPENBLOCKS_3000
2023-10-25 20:13:45 +02:00
- ENABLE_USER_SIGN_UP=${ENABLE_USER_SIGN_UP:-true}
2023-10-26 09:34:02 +02:00
- ENCRYPTION_PASSWORD=$SERVICE_PASSWORD_ENCRYPTION
- ENCRYPTION_SALT=$SERVICE_PASSWORD_SALT
2023-10-25 20:13:45 +02:00
volumes:
- openblocks-data:/openblocks-stacks
healthcheck:
2024-05-17 10:11:55 +02:00
test: ["CMD", "curl", "-f", "http://127.0.0.1:3000/health"]
2023-10-25 20:13:45 +02:00
interval: 5s
2023-10-26 09:34:02 +02:00
timeout: 20s
2023-10-25 20:13:45 +02:00
retries: 10