-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
52 lines (52 loc) · 1000 Bytes
/
docker-compose.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
version: '3.9'
services:
db:
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: password
POSTGRES_DB: tipdapp
POSTGRES_HOST_AUTH: trust
ports:
- '5432:5432'
volumes:
- db:/var/lib/postgressql/data
server:
build: server/
container_name: server
command: ${SERVER_COMMAND}
depends_on:
- db
# - hardhat
env_file:
- server/.env.development
- server/prisma/.env
ports:
- 3001:3001
volumes:
- ./server:/app
dapp:
build: dapp/
container_name: dapp
command: npm run dev
depends_on:
- server
# - hardhat
env_file:
- dapp/.env.development
ports:
- 3000:3000
volumes:
- ./dapp:/app
# hardhat:
# build: contracts/
# container_name: hardhat
# # command: npm run dev
# env_file:
# - contracts/.env.development
# ports:
# - 8545:8545
# volumes:
# - ./contracts:/app
volumes:
db: