https://github.com/kevindmorris/docker-postgres-keycloak-react
A template for a containerized application with postgres, keycloak, and react.
https://github.com/kevindmorris/docker-postgres-keycloak-react
docker docker-compose keycloak postgresql react
Last synced: 3 months ago
JSON representation
A template for a containerized application with postgres, keycloak, and react.
- Host: GitHub
- URL: https://github.com/kevindmorris/docker-postgres-keycloak-react
- Owner: kevindmorris
- License: mit
- Created: 2025-07-10T18:16:10.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2025-07-15T13:34:23.000Z (12 months ago)
- Last Synced: 2025-09-11T10:50:19.817Z (10 months ago)
- Topics: docker, docker-compose, keycloak, postgresql, react
- Language: CSS
- Homepage:
- Size: 65.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker + Postgres + Keycloak + React
## ๐ Architecture
```mermaid
graph LR
client <--> react
client[Client]
subgraph Docker
direction TB
postgres[Postgres]
keycloak[Keycloak]
react[React]
react <--> keycloak
keycloak <--> postgres
end
```
## ๐งช Getting started
Build the docker stack:
```
docker compose up -d --build
docker compose down
```
Build the docker stack (development):
```
docker compose up -d postgres keycloak
npm i
npm run dev
```