An open API service indexing awesome lists of open source software.

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.

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
```