forked from asilnikov/docker_homework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
54 lines (49 loc) · 928 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
53
54
version: "3.8"
services:
frontend:
container_name: frontend
build:
context: .
dockerfile: Dockerfile.front
image: frontend:v10
restart: always
ports:
- 3000:3000
depends_on:
- backend
- database
stdin_open: true
networks:
- netfront
backend:
container_name: backend
build:
context: .
image: backend:v10
restart: always
ports:
- 8000:8000
depends_on:
- database
networks:
- netback
database:
container_name: database
build:
context: .
dockerfile: Dockerfile.psql
image: postgre14.1:v10
restart: always
ports:
- 5432:5432
volumes:
- postgres:/var/lib/postgresql/data
networks:
- netback
networks:
netfront:
external: true
netback:
external: true
volumes:
postgres: {}