-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-dev.yml
66 lines (66 loc) · 1.56 KB
/
docker-compose-dev.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
services:
app:
build:
context: /Users/yalcinkayau/Desktop/workbench/spring-boot-react
dockerfile: /Users/yalcinkayau/Desktop/workbench/spring-boot-react/Dockerfile
container_name: react-and-spring-data-rest
depends_on:
postgresqldb:
condition: service_started
image: react-and-spring-data-rest
networks:
default: null
ports:
- mode: ingress
target: 8080
published: 8080
protocol: tcp
postgresqldb:
environment:
POSTGRES_DB: employeedb
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
image: postgres
networks:
default: null
ports:
- mode: ingress
target: 5432
published: 5432
protocol: tcp
networks:
default:
name: spring-boot-react_default
services:
app:
build:
context: /Users/yalcinkayau/Desktop/workbench/spring-boot-react
dockerfile: /Users/yalcinkayau/Desktop/workbench/spring-boot-react/Dockerfile
container_name: react-and-spring-data-rest
depends_on:
postgresqldb:
condition: service_started
image: umutykaya/react-and-spring-data-rest
networks:
default: null
ports:
- mode: ingress
target: 8080
published: 8080
protocol: tcp
postgresqldb:
environment:
POSTGRES_DB: employeedb
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
image: postgres
networks:
default: null
ports:
- mode: ingress
target: 5432
published: 5432
protocol: tcp
networks:
default:
name: spring-boot-react_default