Documentation Index
Fetch the complete documentation index at: https://docs.ringee.io/llms.txt
Use this file to discover all available pages before exploring further.
Overview
When running Ringee withdocker-compose.app.yml, several environment variables are automatically overridden to use Docker’s internal networking. You don’t need to manually set these.
Automatic Overrides
The following variables are set automatically by Docker Compose:| Variable | Docker Value |
|---|---|
DATABASE_URL | postgresql://ringee-user:ringee-password@postgres:5432/ringee-db-local?schema=public |
REDIS_HOST | redis |
REDIS_PORT | 6379 |
REDIS_URL | redis://redis:6379 |
The hostnames
postgres and redis refer to the Docker internal service names. These are resolved automatically by Docker’s internal DNS.Volumes
The default Docker Compose configuration creates the following persistent volumes:| Volume | Purpose |
|---|---|
postgres-data | PostgreSQL database files |
redis-data | Redis persistence data |
Ports
Default port mapping:| Service | Host Port | Container Port |
|---|---|---|
| Admin Frontend | 4200 | 4200 |
| Consumer Frontend | 4201 | 4201 |
| Backend API | 3000 | 3000 |
| PostgreSQL | 5432 | 5432 |
| Redis | 6379 | 6379 |
Customizing ports
To change the host ports, modify theports section in docker-compose.app.yml:

