Your Setup:
- Netcup VPS with Portainer and Ubuntu 24.04LTS, running a bunch of container
- SeaTable Edition (Developer)
- SeaTable Version (6.0.0):
Describe the Problem/Error/Question:
Please describe your issue as precise as possible. If helpful, you can also provide:
-
I use this self developed docker compose to launch
-
version: '2.0' services: db: image: mariadb:10.11 container_name: seatable-mysql environment: - MYSQL_ROOT_PASSWORD=YOUR_SECURE_ROOT_PASSWORD - MYSQL_LOG_CONSOLE=true volumes: - seatable-db-data:/var/lib/mysql networks: - seatable-net healthcheck: # WICHTIG: Das Passwort hier muss mit MYSQL_ROOT_PASSWORD übereinstimmen test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-u", "root", "-pYOUR_SECURE_ROOT_PASSWORD"] interval: 5s timeout: 5s retries: 20 restart: unless-stopped memcached: image: memcached:1.6 container_name: seatable-memcached entrypoint: memcached -m 256 networks: - seatable-net restart: unless-stopped redis: image: redis:6.2 container_name: seatable-redis networks: - seatable-net restart: unless-stopped seatable: image: seatable/seatable-developer:latest container_name: seatable environment: - DB_HOST=db - DB_ROOT_PASSWD=YOUR_SECURE_ROOT_PASSWORD - SEATABLE_MYSQL_DB_PASSWORD=YOUR_SECURE_ROOT_PASSWORD - SEATABLE_SERVER_HOSTNAME=seatable.your-domain.com - SEATABLE_SERVER_LETSENCRYPT=False - TIME_ZONE=Europe/Berlin # Protokoll auf HTTPS zwingen (für Traefik) - SEATABLE_SERVER_PROTOCOL=https # Keys - SEATABLE_SECRET_KEY=YOUR_RANDOM_SECRET_KEY - JWT_PRIVATE_KEY=YOUR_RANDOM_JWT_PRIVATE_KEY volumes: - seatable-data:/shared depends_on: db: condition: service_healthy memcached: condition: service_started redis: condition: service_started networks: - seatable-net - traefik labels: - "traefik.enable=true" - "traefik.http.routers.seatable.rule=Host(`seatable.your-domain.com`)" - "traefik.http.routers.seatable.entrypoints=websecure" - "traefik.http.routers.seatable.tls=true" - "traefik.http.routers.seatable.tls.certresolver=your-cert-resolver" - "traefik.http.services.seatable.loadbalancer.server.port=80" restart: unless-stopped networks: seatable-net: traefik: external: true volumes: seatable-db-data: seatable-data: -
But always with 6.0.0 i got stock here. With 4.4.0 to 5.2.0 everything is fine.
-
The script does absolutly nothing.
-

-
What more infos do you need from me to help me fix this?
