forked from atilbian/Hex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yaml
More file actions
43 lines (40 loc) · 811 Bytes
/
docker-compose.dev.yaml
File metadata and controls
43 lines (40 loc) · 811 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
32
33
34
35
36
37
38
39
40
41
42
43
version: "3"
services:
nestjs:
build:
dockerfile: ./Dockerfile.dev
ports:
- 3000:3000
volumes:
- ./web-app/:/usr/web-app/
pgadmin:
container_name: pgadmin
image: dpage/pgadmin4:4.18
restart: always
env_file:
- ./.docker/pgadmin/.env.pgadmin
ports:
- 8080:80
depends_on:
- postgres
expo:
container_name: expo
build:
context: ./mobile-app/
dockerfile: ./Dockerfile.dev
ports:
- 19000:19000
- 19006:19006
- 19001:19001
- 19002:19002
volumes:
- ./mobile-app/:/usr/mobile-app/
react-admin:
container_name: react-admin
build:
context: ./admin-app/
dockerfile: ./Dockerfile.dev
ports:
- 5000:5000
volumes:
- ./admin-app/:/usr/admin-app/