mirror of
https://github.com/teableio/teable.git
synced 2026-03-23 00:04:56 +08:00
* chore: update tracing details * feat: add attachemnt ro * feat: upgrade to zod 4 and ai-sdk 5 * chore: openapi -> meta * feat: ai-sdk 6 * chore: standard resource type * feat: grid view state subscriber * feat: pick upgrade node to 22 * fix: remove swagger to makesure backend start * fix: remove swagger to makesure backend start * chore: fix typecheck * chore: clean ui effect * chore: i18n for tools * fix: card ui * chore: update ai sdk provider * fix: should not delete the last view in table * feat: better zod error * chore: clean base card * fix: restore into base logic * chore: i18n for tools * chore: i18n for tools * fix: swagger is back * fix: pnpm lock * fix: unit test * fix: remove token * fix: typecheck * feat: proxy setting * chore: update i18n for chat * chore: tools i18n * chore: upgrade ai sdk * chore: i18n for ai gateway * chore: rename app generation to app builder * chore: remove deprecated version * feat: adjust feature limitations * chore: tools i18n * fix: lint issue * fix: api tag * chore: zod i18n * chore: add credit limit exceeded error handling --------- Co-authored-by: SkyHuang <sky.huang.fe@gmail.com>
68 lines
1.7 KiB
YAML
68 lines
1.7 KiB
YAML
|
|
services:
|
|
teable-db:
|
|
image: postgres:15.4
|
|
ports:
|
|
- '42345:5432'
|
|
volumes:
|
|
- teable-db:/var/lib/postgresql/data:rw
|
|
environment:
|
|
- TZ=${TIMEZONE}
|
|
- POSTGRES_DB=${POSTGRES_DB}
|
|
- POSTGRES_USER=${POSTGRES_USER}
|
|
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
|
networks:
|
|
- teable-swarm
|
|
healthcheck:
|
|
test: ['CMD-SHELL', "sh -c 'pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}'"]
|
|
interval: 10s
|
|
timeout: 3s
|
|
retries: 3
|
|
|
|
teable-cache:
|
|
image: redis:7.2.4
|
|
expose:
|
|
- '6379'
|
|
volumes:
|
|
- teable-cache:/data:rw
|
|
networks:
|
|
- teable-swarm
|
|
command: redis-server --appendonly yes --requirepass ${REDIS_PASSWORD}
|
|
healthcheck:
|
|
test: ['CMD', 'redis-cli', '--raw', 'incr', 'ping']
|
|
interval: 10s
|
|
timeout: 3s
|
|
retries: 3
|
|
|
|
teable-storage:
|
|
image: minio/minio:RELEASE.2024-02-17T01-15-57Z
|
|
expose:
|
|
- '9000'
|
|
- '9001'
|
|
environment:
|
|
- MINIO_SERVER_URL=${MINIO_SERVER_URL}
|
|
- MINIO_BROWSER_REDIRECT_URL=${MINIO_BROWSER_REDIRECT_URL}
|
|
- MINIO_ACCESS_KEY=${MINIO_ACCESS_KEY}
|
|
- MINIO_SECRET_KEY=${MINIO_SECRET_KEY}
|
|
volumes:
|
|
- teable-storage:/data:rw
|
|
networks:
|
|
- teable-swarm
|
|
command: server /data --console-address ":9001"
|
|
|
|
createbuckets:
|
|
image: minio/mc
|
|
deploy:
|
|
restart_policy:
|
|
condition: on-failure
|
|
networks:
|
|
- teable-swarm
|
|
entrypoint: >
|
|
/bin/sh -c "
|
|
/usr/bin/mc alias set teable-storage http://teable-storage:9000 ${MINIO_ACCESS_KEY} ${MINIO_SECRET_KEY};
|
|
/usr/bin/mc mb teable-storage/public;
|
|
/usr/bin/mc anonymous set public teable-storage/public;
|
|
/usr/bin/mc mb teable-storage/private;
|
|
exit 0;
|
|
"
|