Docuseal logo

Docuseal

Open-source document signing platform.

Getting Started

  1. Create a folder and move to the folder
    mkdir docuseal && cd docuseal
    
  2. Create a docker-compose.yml file and add the following content:
    services:
      app:
        depends_on:
          postgres:
            condition: service_healthy
        image: docuseal/docuseal:latest
        ports:
          - 9008:3000
        volumes:
          - docuseal:/data/docuseal
        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
    volumes:
      docuseal:
      pg_data:
    
  3. Run the following command to start the container:
    docker compose up -d
    
  4. Open the browser and go to http://localhost:9008 to access the Grocy.