-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (36 loc) · 940 Bytes
/
docker-compose.yml
File metadata and controls
37 lines (36 loc) · 940 Bytes
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
version: '3'
services:
minio:
container_name: receiptfox-minio
image: minio/minio
command: "server --console-address \":9001\" /data"
ports:
- 9000:9000
- 9001:9001
environment:
- MINIO_ROOT_USER=access_key
- MINIO_ROOT_PASSWORD=secret_key
postgres:
container_name: receiptfox-postgres
image: postgres:13.4
ports:
- "5432:5432"
environment:
- POSTGRES_PASSWORD=user
- POSTGRES_USER=user
- POSTGRES_DB=receiptfox
docsrabbit:
container_name: receiptfox-docsrabbit
image: registry.gitlab.com/encircle360-oss/docsrabbit/docsrabbit:v0.0.6
ports:
- "50005:50005"
- "51005:51005"
environment:
- SPRING_PROFILES_ACTIVE=mongo
- MONGO_URI=mongodb://receiptfox-mongodb:27017/docsrabbit
- MONGO_DATABASE=docsrabbit
mongo:
container_name: receiptfox-mongodb
image: mongo:4
ports:
- "27017:27017"