-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.prod.yml
More file actions
44 lines (39 loc) · 1.23 KB
/
docker-compose.prod.yml
File metadata and controls
44 lines (39 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
services:
# PostgreSQL database
postgresql:
build:
context: ./postgresql
dockerfile: ./Dockerfile
image: ghcr.io/${GHCR_USER}/${GHCR_REPO}-postgresql:${GHCR_TAG:-latest}
# Authentication service
service-auth:
build:
context: .
dockerfile: ./service-auth/Dockerfile
image: ghcr.io/${GHCR_USER}/${GHCR_REPO}-service-auth:${GHCR_TAG:-latest}
# Job management service
service-job:
build:
context: .
dockerfile: ./service-job/Dockerfile
image: ghcr.io/${GHCR_USER}/${GHCR_REPO}-service-job:${GHCR_TAG:-latest}
# Application management service
service-application:
build:
context: .
dockerfile: ./service-application/Dockerfile
image: ghcr.io/${GHCR_USER}/${GHCR_REPO}-service-application:${GHCR_TAG:-latest}
# GenAI service
service-genai:
image: ghcr.io/${GHCR_USER}/${GHCR_REPO}-service-genai:${GHCR_TAG:-latest}
build:
context: ./service-genai
dockerfile: ./Dockerfile
# Frontend
frontend:
image: ghcr.io/${GHCR_USER}/${GHCR_REPO}-frontend:${GHCR_TAG:-latest}
build:
context: ./frontend
dockerfile: ./Dockerfile
args:
- VITE_API_BASE_URL=${VITE_API_BASE_URL:-}