README.md

January 23, 2026 · View on GitHub

GOAT Frontend Alternative Logo

GOAT

Intelligent software for modern web mapping and integrated planning
Website

License Commits-per-month


✨ About GOAT

GOAT Screenshot


GOAT is a free and open source WebGIS platform. It is an all-in-one solution for integrated planning, with powerful GIS tools, integrated data, and comprehensive accessibility analyses for efficient planning and fact-based decision-making.

Try it out in the cloud at goat.plan4better.de

For more information check out:

GOAT Docs

Follow GOAT on LinkedIn

Follow GOAT on Twitter


Built on Open Source

GOAT is a monorepo project leveraging a modern, full-stack architecture.

Frontend & Shared UI Components

Backend & API Services


🚀 Getting started

☁️ Cloud Version

GOAT is also available as a fully hosted cloud service. If you prefer not to manage your own infrastructure, you can get started instantly with our trial version and choose from one of our available subscription tiers. Get started at goat.plan4better.de.

🐳 Self-hosting (Docker)

Official support: We provide a maintained docker-compose.yml for running the full GOAT stack in a production‑like environment.

Important: While we provide Docker resources, self‑hosted deployments are community‑supported. We do not offer official support for managing your infrastructure.

The images for each GOAT service are published on GitHub Container Registry.

Requirements

Make sure the following are installed on your server or local machine:

  • Docker
  • Docker Compose (plugin syntax: docker compose)
  • At least 12 GB RAM recommended

Docker Compose Profiles

The compose.yaml uses profiles to control which services start:

ProfileDescription
(none)Infrastructure only: PostgreSQL, MinIO, Redis, RabbitMQ, Windmill server/worker
devInfrastructure + devcontainer with local code mounts for development
prodInfrastructure + all production services (core, geoapi, web, processes, workers)

The prod profile provisions:

  • PostgreSQL with PostGIS
  • MinIO (S3 compatible storage)
  • Redis & RabbitMQ
  • Windmill (workflow engine for analytics tools)
  • GOAT Core (FastAPI backend)
  • GOAT GeoAPI (FastAPI backend for geodata)
  • GOAT Processes (OGC API Processes)
  • GOAT Web (Next.js frontend)

1. Clone the repository

git clone https://github.com/plan4better/goat.git
cd goat

2. Create your configuration file

Copy .env.example to .env:

cp .env.example .env

Update environment variables as needed (see "Environment Variables" section below).

3. Start the GOAT stack

docker compose --profile prod up -d

This will automatically pull the latest images and start all services.

4. Access GOAT

ServiceURL
Web UIhttp://localhost:3000
Core APIhttp://localhost:8000/api
GeoAPIhttp://localhost:8100
Processes APIhttp://localhost:8300
Windmill UIhttp://localhost:8110
MinIO Consolehttp://localhost:9001

Updating GOAT

To update an existing installation:

docker compose --profile prod down
docker compose --profile prod pull
docker compose --profile prod up -d

Clean Restart (reset all data)

To completely reset the installation including all data:

docker compose --profile prod down
docker volume rm goat_goat-data
docker compose --profile prod up -d

Build Images Locally

If you are developing the GOAT codebase or making changes to apps/core, apps/geoapi, or apps/web, you may need to build images manually.

docker compose --profile prod up -d --build

Only use this if you're modifying the GOAT source code.

Required Environment Variables

VariableDescription
POSTGRES_USERUsername for PostgreSQL authentication
POSTGRES_PASSWORDPassword for PostgreSQL authentication
POSTGRES_SERVERHostname of the Postgres service (usually db)
S3_PROVIDERStorage provider (e.g., minio)
S3_ACCESS_KEY_IDAccess key for S3 / MinIO
S3_SECRET_ACCESS_KEYSecret key for S3 / MinIO
S3_ENDPOINT_URLInternal S3 endpoint (http://minio:9000)
S3_BUCKET_NAMEName of the S3 bucket to create/use
S3_REGION_NAMERegion (may remain empty for MinIO)
S3_PUBLIC_ENDPOINT_URLPublic URL for accessing S3 objects
KEYCLOAK_ADMINKeycloak admin username
KEYCLOAK_ADMIN_PASSWORDKeycloak admin password
AUTHBackend auth flag (True/False)
NEXT_PUBLIC_APP_URLPublic URL of the Web UI
NEXT_PUBLIC_API_URLPublic URL of the Core API
NEXT_PUBLIC_GEOAPI_URLPublic URL of the GeoAPI (tiles/features)
NEXT_PUBLIC_PROCESSES_URLPublic URL of the Processes API
NEXT_PUBLIC_ACCOUNTS_API_URLPublic URL of Accounts API (optional)
NEXT_PUBLIC_DOCS_URLURL for documentation
NEXT_PUBLIC_MAP_TOKENMapLibre/Mapbox token
NEXT_PUBLIC_KEYCLOAK_ISSUERKeycloak OpenID issuer URL
NEXT_PUBLIC_KEYCLOAK_CLIENT_IDKeycloak client ID
KEYCLOAK_CLIENT_SECRETKeycloak client secret
NEXT_PUBLIC_SENTRY_DSNSentry DSN (optional)
NEXT_PUBLIC_AUTH_DISABLEDEnable/disable auth in frontend
NEXT_PUBLIC_ACCOUNTS_DISABLEDEnable/disable accounts features
NEXTAUTH_URLURL for Auth.js backend
NEXTAUTH_SECRETSecret key for Auth.js sessions

👩‍⚖️ License

GOAT is a commercial open‑source project. The core platform is licensed under the GNU General Public License v3.0 (GPLv3), which allows anyone to use, modify, and distribute the software under the terms of the GPL.

Some components, such as the Accounts API and features related to user management, teams, or organizations, are not open source and are provided under a commercial license. These components are not required for running the core platform but are available for organizations that need advanced functionality, hosted deployments, or enterprise‑level capabilities.

This structure makes GOAT accessible for everyone, while providing extended functionalities through optional commercial services.

GPLv3Commercial
Self‑host the core platform
Use for commercial purposes
Clone privately
Fork publicly
Modify and redistribute❌ (closed parts excluded)
Official support
Derivative work kept private✅ (for commercial components only)
Teams / Organizations API
Authentication integrations
Hosted SaaS version

✍️ Contributing

We welcome contributions of all kinds, bug reports, documentation improvements, new features, and feedback that helps strengthen the platform. Please see our contributing guide.