Quepasa Docs

Quick Start

If you just want to see Quepasa in action without a database, here’s a minimal docker-compose.yml snippet:

services:
  web:
    image: codefroglabs/quepasa-web
    ports:
      - "5007:8080"
    depends_on:
      - backend
    environment:
      # Example environment variables
      QUEPASA__DEPLOYMENT__CLUSTERMODE: 1
      QUEPASA__CLIENT__PRIMARYBACKEND: http://backend

  backend:
    image: codefroglabs/quepasa-backend
    ports:
      - "11000:11000"
      - "30000:30000"
    environment:
      # Example environment variables
      QUEPASA__DEPLOYMENT__CLUSTERMODE: 1
      QUEPASA__SETUP__SEED: true
  1. web: The frontend, listening on port 5007.
  2. backend: The application core, listening on ports 11000 and 30000.

Use the command:

docker-compose up -d

to start both services. You can then visit http://localhost:5007 in your browser to check the UI.

Note: In this minimal mode (with CLUSTERMODE: 1), data is stored in an ephemeral way. This is great for demos and local testing but is not recommended for production setups.