From 14061c7d02d453788845359e158b2a0b7acbbabc Mon Sep 17 00:00:00 2001 From: toir-bot Date: Wed, 22 Apr 2026 11:19:09 +0000 Subject: [PATCH] chore: initial project scaffold: docker-compose.yml --- docker-compose.yml | 63 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..55f15bd --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,63 @@ +services: + postgres: + image: postgres:16-alpine + container_name: toir-light-v10-postgres + restart: unless-stopped + environment: + POSTGRES_DB: toir-light-v10 + POSTGRES_USER: ${DB_USER} + POSTGRES_PASSWORD: ${DB_PASSWORD} + volumes: + - postgres_data:/var/lib/postgresql/data + networks: + - internal + + backend: + build: + context: ./backend + dockerfile: Dockerfile + container_name: toir-light-v10-backend + restart: unless-stopped + depends_on: + - postgres + environment: + DATABASE_URL: postgresql://${DB_USER}:${DB_PASSWORD}@postgres:5432/toir-light-v10 + KEYCLOAK_ISSUER_URL: ${KEYCLOAK_ISSUER_URL} + KEYCLOAK_AUDIENCE: ${KEYCLOAK_AUDIENCE} + NODE_ENV: production + networks: + - internal + + frontend: + build: + context: ./frontend + dockerfile: Dockerfile + args: + VITE_KEYCLOAK_URL: ${VITE_KEYCLOAK_URL} + VITE_KEYCLOAK_REALM: ${VITE_KEYCLOAK_REALM} + VITE_KEYCLOAK_CLIENT_ID: ${VITE_KEYCLOAK_CLIENT_ID} + container_name: toir-light-v10-frontend + restart: unless-stopped + networks: + - internal + + nginx: + build: + context: ./nginx + dockerfile: Dockerfile + container_name: toir-light-v10-nginx + restart: unless-stopped + depends_on: + - backend + - frontend + networks: + - internal + - proxy + +volumes: + postgres_data: + +networks: + internal: + proxy: + external: true