Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions blueprints/seatable/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
services:
seatable:
image: seatable/seatable-enterprise:latest
restart: unless-stopped
ports:
- 80
volumes:
- seatable_data:/shared
depends_on:
mariadb:
condition: service_healthy
redis:
condition: service_healthy
environment:
- DB_HOST=mariadb
- DB_ROOT_PASSWD=${MARIADB_PASSWORD}
- SEATABLE_SERVER_LETSENCRYPT=False
- TIME_ZONE=${TIME_ZONE}
- SEATABLE_SERVER_HOSTNAME=${SEATABLE_SERVER_HOSTNAME}
- SEATABLE_ADMIN_EMAIL=${SEATABLE_ADMIN_EMAIL}
- SEATABLE_ADMIN_PASSWORD=${SEATABLE_ADMIN_PASSWORD}
- JWT_PRIVATE_KEY=${JWT_PRIVATE_KEY}
- REDIS_HOST=redis
- REDIS_PASSWORD=${REDIS_PASSWORD}
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost/api2/ping/"]
interval: 20s
timeout: 5s
retries: 3
start_period: 30s

mariadb:
image: mariadb:11.8.3
restart: unless-stopped
environment:
- MYSQL_ROOT_PASSWORD=${MARIADB_PASSWORD}
- MYSQL_LOG_CONSOLE=true
volumes:
- mariadb_data:/var/lib/mysql
command:
- --transaction-isolation=READ-COMMITTED
- --log-bin=binlog
- --binlog-format=ROW
- --character-set-server=utf8mb4
- --collation-server=utf8mb4_unicode_ci
healthcheck:
test: ["CMD", "healthcheck.sh", "--connect", "--innodb_initialized"]
interval: 20s
timeout: 5s
retries: 3
start_period: 30s

redis:
image: redis:8.2.2-alpine
restart: unless-stopped
command: redis-server --requirepass ${REDIS_PASSWORD}
volumes:
- redis_data:/data
healthcheck:
test: ["CMD", "redis-cli", "--raw", "incr", "ping"]
interval: 20s
timeout: 5s
retries: 3
start_period: 30s

volumes:
seatable_data:
mariadb_data:
redis_data:
14 changes: 14 additions & 0 deletions blueprints/seatable/seatable.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions blueprints/seatable/template.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name = "SeaTable"
version = "6.0.6"
description = "A powerful online collaborative table and information management system with an easy-to-use interface. SeaTable combines the features of databases, spreadsheets, and lightweight CRM systems."
logo = "seatable.svg"

[variables]
seatable_domain = "${domain}"
admin_email = "${email}"
admin_password = "${password:45}"
mariadb_password = "${password:32}"
redis_password = "${password:32}"
jwt_private_key = "${password:64}"

[[config.domains]]
serviceName = "seatable"
port = 80
host = "${seatable_domain}"

[config]
env = [
"SEATABLE_SERVER_HOSTNAME=${seatable_domain}",
"SEATABLE_ADMIN_EMAIL=${admin_email}",
"SEATABLE_ADMIN_PASSWORD=${admin_password}",
"MARIADB_PASSWORD=${mariadb_password}",
"REDIS_PASSWORD=${redis_password}",
"JWT_PRIVATE_KEY=${jwt_private_key}",
"TIME_ZONE=UTC"
]
19 changes: 19 additions & 0 deletions meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -4775,6 +4775,25 @@
"aggregator"
]
},
{
"id": "seatable",
"name": "SeaTable",
"version": "6.0.6",
"description": "A powerful online collaborative table and information management system with an easy-to-use interface. SeaTable combines the features of databases, spreadsheets, and lightweight CRM systems.",
"logo": "seatable.svg",
"links": {
"github": "https://github.com/seatable/seatable",
"website": "https://seatable.io",
"docs": "https://admin.seatable.io"
},
"tags": [
"database",
"spreadsheet",
"collaboration",
"no-code",
"crm"
]
},
{
"id": "shlink",
"name": "Shlink",
Expand Down