update teable

This commit is contained in:
2025-12-02 15:19:48 +08:00
parent 599fb9e2f7
commit d6112931be
2 changed files with 28 additions and 8 deletions

View File

@@ -5,7 +5,7 @@ services:
ports:
- '3000:3000'
volumes:
- teable-data:/app/.assets:rw
- ./teable-data:/app/.assets:rw
env_file:
- .env
environment:
@@ -30,7 +30,7 @@ services:
ports:
- '42345:5432'
volumes:
- teable-db:/var/lib/postgresql/data:rw
- ./teable-db:/var/lib/postgresql/data:rw
environment:
- POSTGRES_DB=${POSTGRES_DB}
- POSTGRES_USER=${POSTGRES_USER}
@@ -49,7 +49,7 @@ services:
expose:
- '6379'
volumes:
- teable-cache:/data:rw
- ./teable-cache:/data:rw
networks:
- teable
command: redis-server --appendonly yes --requirepass ${REDIS_PASSWORD}
@@ -62,8 +62,3 @@ services:
networks:
teable:
name: teable-network
volumes:
teable-db: {}
teable-data: {}
teable-cache: {}