-
Notifications
You must be signed in to change notification settings - Fork 65
/
docker-compose.yml
65 lines (65 loc) · 1.53 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
64
65
services:
db:
image: postgres:14
restart: always
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: postgres
volumes:
- database_data:/var/lib/postgresql/data
cloud:
image: postgres:14
restart: always
ports:
- 5433:5432
environment:
POSTGRES_PASSWORD: postgres
volumes:
- cld_db_data:/var/lib/postgresql/data
rabbit:
image: rabbitmq:3-management
hostname: "rabbit1"
environment:
RABBITMQ_ERLANG_COOKIE: "SWQOKODSQALRPCLNMEQG"
RABBITMQ_DEFAULT_USER: "rabbitmq"
RABBITMQ_DEFAULT_PASS: "rabbitmq"
RABBITMQ_DEFAULT_VHOST: "/"
ports:
- "15672:15672"
- "5672:5672"
influxdb:
image: influxdb:1.8
volumes:
# Mount for influxdb data directory and configuration
- influxdb:/var/lib/influxdb
environment:
- INFLUXDB_HTTP_AUTH_ENABLED=true
- INFLUXDB_ADMIN_USER=forge
- INFLUXDB_ADMIN_PASSWORD=forgepwd
- INFLUXDB_DB=plural
ports:
- "8086:8086"
# chartmuseum:
# image: chartmuseum/chartmuseum:latest
# volumes:
# - ${HOME}/.gcp:/home/chartmuseum/.gcp:ro
# restart: always
# environment:
# PORT: 8080
# DEBUG: 1
# DEPTH: 1
# STORAGE: google
# CONTEXT_PATH: '/cm'
# STORAGE_GOOGLE_BUCKET: "mguarino-charts"
# STORAGE_GOOGLE_PREFIX: ""
# GOOGLE_APPLICATION_CREDENTIALS: "/home/chartmuseum/.gcp/key.json"
# ports:
# - 8080:8080
volumes:
database_data:
driver: local
cld_db_data:
driver: local
influxdb:
driver: local