-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
52 lines (47 loc) · 1.14 KB
/
docker-compose.yaml
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
# Use root/example as user/password credentials
version: "3.9"
services:
# mongo_carrinho:
# image: mongo
# restart: always
# ports:
# - 27017:27017
# environment:
# MONGO_INITDB_ROOT_USERNAME: "root"
# MONGO_INITDB_ROOT_PASSWORD: "example"
# mongo_express:
# image: mongo-express
# restart: always
# ports:
# - 8081:8081
# environment:
# ME_CONFIG_MONGODB_ADMINUSERNAME: root
# ME_CONFIG_MONGODB_ADMINPASSWORD: example
# ME_CONFIG_MONGODB_URL: mongodb://root:example@mongo_carrinho:27017/
carrinho:
build:
context: .
dockerfile: ./Dockerfile
volumes:
- ./carrinho:/code/carrinho
ports:
- "8000:8000"
depends_on:
banco:
condition: service_healthy
stdin_open: true
tty: true
environment:
DATABASE_URI: "postgresql://postgres:example@banco:5432/"
banco:
image: postgres
restart: always
ports:
- 5432:5432
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres -d postgres"]
interval: 5s
timeout: 5s
retries: 5
environment:
POSTGRES_PASSWORD: "example"