-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (31 loc) · 713 Bytes
/
docker-compose.yml
File metadata and controls
31 lines (31 loc) · 713 Bytes
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
services:
app:
build: .
stdin_open: true
ports:
- '5173:5173'
entrypoint: bash -c "pnpm install && pnpm start --host"
volumes:
- '.:/usr/src/app'
bash:
build: .
ports:
- '5173:5173'
stdin_open: true
entrypoint: /bin/bash
volumes:
- '.:/usr/src/app'
prod_build:
build: .
entrypoint: bash -c "pnpm build"
environment:
CI: 'false'
VITE_DB_URL:
VITE_DB_API_KEY:
VITE_REACT_GOOGLE_MAPS_API_KEY:
VITE_OPEN_ROUTE_SERVICE_API_KEY:
VITE_PUBLIC_POSTHOG_KEY:
VITE_VERIFICATION_PASSWORD:
volumes:
- './docker/build:/usr/src/app/build'
- './docker/testResults:/usr/src/app/testResults'