forked from The-Frozen-North/tfn-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-dev-seed.yml
43 lines (42 loc) · 981 Bytes
/
docker-compose-dev-seed.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
version: "3.3"
services:
tfn-server-dev:
image: nwnxee/unified:6687fe1
tty: true
stdin_open: true
env_file: ${PWD-.}/config/common-dev.env
environment:
- NWN_PUBLICSERVER=0
- NWN_SERVERNAME="The Frozen North DEV SEED"
- NWN_PORT=5134
- NWNX_SERVERLOGREDIRECTOR_LOG_LEVEL=6
ports:
- '5134:5134/udp'
volumes:
- ${PWD-.}/logs:/nwn/run/logs.0
- ${PWD-.}/:/nwn/home
influxdb:
hostname: influxdb
image: influxdb:1.7
restart: unless-stopped
env_file: ${PWD-.}/config/influxdb.env
ports:
- '8086:8086/tcp'
- '8089:8089/udp'
volumes:
- influxdb:/var/lib/influxdb
grafana:
hostname: grafana
image: grafana/grafana:6.0.1
restart: unless-stopped
depends_on:
- influxdb
env_file: ${PWD-.}/config/grafana.env
ports:
- '3000:3000/tcp'
volumes:
- ./grafana-provisioning:/etc/grafana/provisioning
- grafana:/var/lib/grafana
volumes:
influxdb:
grafana: