-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
56 lines (56 loc) · 997 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
55
56
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:
- ./web:/usr/share/nginx/html/
# Configuração proxy reverso
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
ports:
- 80:80
networks:
- banco
depends_on:
- app
app:
image: python:3.6
volumes:
- ./app:/app
working_dir: /app
command: bash ./app.sh
networks:
- banco
- web
- fila
depends_on:
- db
queue:
image: redis:3.2
networks:
- fila
worker:
build: worker
volumes:
- ./worker:/worker
working_dir: /worker
command: worker.py
networks:
- fila
depends_on:
- queue