-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-build.yml
76 lines (75 loc) · 2.49 KB
/
docker-compose-build.yml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
version: "3.8"
services:
mongodb:
image: mongo:latest
ports:
- "27017:27017"
volumes:
- ./data/mongo:/data/db
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: password
healthcheck:
test: echo 'db.runCommand("ping").ok' | mongosh localhost:27017/test --quiet
interval: 10s
timeout: 10s
retries: 5
start_period: 40s
mongoexperss:
image: mongo-express:latest
ports:
- "8081:8081"
environment:
ME_CONFIG_MONGODB_URL: "mongodb://root:password@mongodb:27017"
ME_CONFIG_OPTIONS_EDITORTHEME: "ambiance"
ME_CONFIG_BASICAUTH_USERNAME: "admin"
ME_CONFIG_BASICAUTH_PASSWORD: "pass"
depends_on:
mongodb:
condition: service_healthy
promptsail-backend:
container_name: promptsail-backend
build:
context: ./backend
dockerfile: Dockerfile
args:
- BUILD_SHA
ports:
- "8000:8000"
environment:
BASE_URL: "http://localhost:8000"
STATIC_DIRECTORY: "/static"
MONGO_URL: "mongodb://root:password@mongodb:27017"
ORGANIZATION_NAME: "PromptSail"
SSO_AUTH: "False"
depends_on:
mongodb:
condition: service_healthy
promptsail-ui:
container_name: promptsail-ui
build:
context: ./ui
dockerfile: Dockerfile
ports:
- "80:80"
environment:
# vite has a problem with env variables, they are hardcoded after 'npm build' so at runtime we search through the files and replace them, see ui/.env.production and ui/deployment/docker_env_replacement.sh scritp
# https://dev.to/sanjayttg/dynamic-environment-variables-for-dockerized-react-apps-5bc5
# https://github.com/vitejs/vite/issues/10059
PORT: 80
PROMPT_SAIL_ENV_PLACEHOLDER_BACKEND_URL: 'http://promptsail-backend:8000'
PROMPT_SAIL_ENV_PLACEHOLDER_PROXY_URL_HOST: 'http://localhost:8000'
PROMPT_SAIL_ENV_PLACEHOLDER_SSO_GOOGLE_CLIENT_ID: '920***********.apps.googleusercontent.com'
PROMPT_SAIL_ENV_PLACEHOLDER_SSO_AZURE_CLIENT_ID: '6fe*******aaa'
PROMPT_SAIL_ENV_PLACEHOLDER_SSO_AZURE_TENANT: '4a1******aaa'
PROMPT_SAIL_ENV_PLACEHOLDER_SSO_AZURE_SCOPES: 'user.read'
PROMPT_SAIL_ENV_PLACEHOLDER_SSO_AZURE_AUTHORITY: 'https://login.microsoftonline.com/4a1*****aaa'
depends_on:
mongodb:
condition: service_started
promptsail-backend:
condition: service_started
networks:
internal-network:
internal: true
external-network: