forked from WHEELBACK/COMEBACKHERE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.override.yml
More file actions
45 lines (43 loc) · 1.09 KB
/
Copy pathdocker-compose.override.yml
File metadata and controls
45 lines (43 loc) · 1.09 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
45
version: '3.8'
services:
backend:
build:
context: ../comebackhere-backend
dockerfile: Dockerfile
ports:
- "3000:3000"
environment:
- STELLAR_NETWORK=standalone
- SOROBAN_RPC_URL=http://soroban:8000
- HORIZON_URL=http://soroban:8000
- REDIS_URL=redis://redis:6379
env_file:
- ../comebackhere-backend/.env
volumes:
- ../comebackhere-backend:/app
- /app/target
depends_on:
soroban:
condition: service_healthy
redis:
condition: service_healthy
restart: unless-stopped
frontend:
build:
context: ../comebackhere-frontend
dockerfile: Dockerfile
ports:
- "5173:5173"
environment:
- VITE_API_URL=http://localhost:3000
- VITE_SOROBAN_RPC=http://localhost:8000
- VITE_HORIZON_URL=http://localhost:8000
- VITE_NETWORK_PASSPHRASE=Standalone Network ; February 2025
env_file:
- ../comebackhere-frontend/.env
volumes:
- ../comebackhere-frontend:/app
- /app/node_modules
depends_on:
- backend
restart: unless-stopped