Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot Upload Documents #116

Closed
mike-lloyd03 opened this issue Oct 6, 2023 · 2 comments
Closed

Cannot Upload Documents #116

mike-lloyd03 opened this issue Oct 6, 2023 · 2 comments

Comments

@mike-lloyd03
Copy link

I'm running the Docker version with Postgres and using Caddy for my reverse-proxy.

I can create an account and log in, but when I try to upload a document, the application hangs. The spinner on the upload drop location just spins forever. I don't see any error in the webconsole or in docker logs.

Have I configured something wrong?

docker-compose.yml:

version: "3"

services:
  app:
    depends_on:
      postgres:
        condition: service_healthy
    image: docuseal/docuseal:latest
    ports:
      - 8100:3000
    volumes:
      - ./data:/data
    environment:
      DATABASE_URL: postgresql://postgres:postgres@postgres:5432/docuseal

  postgres:
    image: postgres:15
    volumes:
      - "./pg_data:/var/lib/postgresql/data"
    environment:
      POSTGRES_USER: postgres
      POSTGRES_PASSWORD: postgres
      POSTGRES_DB: docuseal
    healthcheck:
      test: ["CMD-SHELL", "pg_isready -U postgres"]
      interval: 5s
      timeout: 5s
      retries: 5
    ports:
      - 5433:5432
@AlexandrToorchyn
Copy link
Contributor

AlexandrToorchyn commented Oct 6, 2023 via email

@AlexandrToorchyn
Copy link
Contributor

Hi @mike-lloyd03 did you try to upload a large file (200+ pages or so) ?
We have a better support of large files now and it will be release in the next version tomorrow.
But other than that i can't think of why the upload didn't work for you.

Please feel free to reopen if the issue persist in the new version

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants