forked from joaofbantunes/AngularAspNetCoreDockerSample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
36 lines (35 loc) · 829 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
version: "3"
services:
reverse-proxy:
build: ./reverse-proxy/.
image: coding-militia-docker-reverse-proxy:latest
ports:
- "5000:80"
- "5001:5001"
networks:
- overlay
depends_on:
- frontend
frontend:
build: ./frontend/.
image: coding-militia-docker-frontend:latest
networks:
- overlay
depends_on:
- backend
backend:
build: ./backend/.
image: coding-militia-docker-backend:latest
networks:
- overlay
depends_on:
- postgres-db
postgres-db:
image: "postgres"
networks:
- overlay
environment:
POSTGRES_USER: "user"
POSTGRES_PASSWORD: "pass"
networks:
overlay: