Overview
The stack is split into dedicated services: public front end, Payload back office, PostgreSQL database and S3-compatible object storage.
docker-compose.yml excerptYAML
services:
front:
build: ./front
depends_on:
- bo
bo:
build: ./bo
depends_on:
- postgres
- object-storage
postgres:
image: postgres:16-alpine
object-storage:
image: dxflrs/garage:v2.2.0Go back to Quick start to run the basic commands.
Once the architecture is clear, move on to VPS deployment (pre-production).
