-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yaml
41 lines (37 loc) · 1000 Bytes
/
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
# Use root/example as user/password credentials
version: "3.9"
services:
mongo_carrinho:
image: mongo
restart: always
volumes:
- ./mongo/scripts/indexes.js:/docker-entrypoint-initdb.d/init-mongo.js:ro
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: .
volumes:
- ./carrinho_compras:/code/carrinho_compras
ports:
- "8000:8000"
depends_on:
- mongo_carrinho
stdin_open: true
tty: true
environment:
DATABASE_URI: "mongodb://root:example@mongo_carrinho:27017/"
SECRET_KEY: "changeme"
ALGORITHM: "HS256"
ACCESS_TOKEN_EXPIRE_MINUTES: 30