-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
59 lines (54 loc) · 1.69 KB
/
docker-compose.yml
File metadata and controls
59 lines (54 loc) · 1.69 KB
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
version: '3'
volumes:
opt-splunk-etc:
opt-splunk-var:
services:
timescaledb:
image: prohelion/timescaledb-with-data:0.4
environment:
POSTGRES_USER: "prohelion"
POSTGRES_PASSWORD: "passw0rd!"
ports:
- 5432:5432
restart: unless-stopped
pgadmin:
image: prohelion/pgadmin4:0.4
depends_on:
- timescaledb
environment:
PGADMIN_DEFAULT_EMAIL: "admin@prohelion.com"
PGADMIN_DEFAULT_PASSWORD: "passw0rd!"
logging:
driver: "none"
ports:
- 5080:80
restart: unless-stopped
splunkenterprise:
hostname: splunkenterprise
image: splunk/splunk:latest
environment:
SPLUNK_START_ARGS: --accept-license
SPLUNK_PASSWORD: passw0rd!
SPLUNK_ENABLE_LISTEN: 9997
SPLUNK_ADD: tcp 1514
SPLUNK_APPS_URL: https://github.com/Prohelion/ArrowPoint-Telemetry/raw/master/splunk/prohelion_telemetry.spl
volumes:
- opt-splunk-etc:/opt/splunk/etc
- opt-splunk-var:/opt/splunk/var
ports:
- 8000:8000
- 9997:9997
- 8088:8088
- 8089:8089
- 9999:9999
- 1514:1514
# This will only work on linux as it requires network_mode: host
# For other platforms run the service in SpringBoot locally or Tomcat
# telemetry:
# image: prohelion/telemetry:0.41-SNAPSHOT
## depends_on:
# - timescaledb
# - splunkenterprise
# ports:
# - "9000:9000"
# - "4876:4876/udp"