-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
63 lines (62 loc) · 1.09 KB
/
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
55
56
57
58
59
60
61
62
63
version: '3'
volumes:
dados:
networks:
banco:
web:
fila:
services:
db:
image: postgres:9.6
volumes:
#volume dos dados
- dados:/var/lib/postgresql/data
#Scripts
- ./scripts:/scripts
- ./scripts/init.sql:/docker-entrypoint-initdb.d/init.sql
networks:
- banco
frontend:
image: nginx:1.13
volumes:
#Sites
- ./web:/usr/share/nginx/html/
#COnfiguração proxy reverso
- ./nginx/default.config:/etc/nginx/conf.d/default.conf
networks:
- web
ports:
- 80:80
depends_on:
- app
app:
image: python:3.6
volumes:
#Aplicação
- ./app:/app
working_dir: /app
command: bash ./app.sh
networks:
- banco
- web
- fila
depends_on:
- db
- queue
environment:
- DB_NAME=email_sender
queue:
image: redis:3.2
networks:
- fila
worker:
build: worker
volumes:
# Volumes
- ./worker:/worker
working_dir: /worker
command: worker.py
networks:
- fila
depends_on:
- queue