mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
Initial commit
This commit is contained in:
commit
b81b768b04
11 changed files with 1022 additions and 0 deletions
27
docker-compose.yml
Normal file
27
docker-compose.yml
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
version: '3'
|
||||
services:
|
||||
bot:
|
||||
build: bot
|
||||
depends_on:
|
||||
- db
|
||||
environment:
|
||||
- TOKEN
|
||||
db:
|
||||
image: postgres:alpine
|
||||
volumes:
|
||||
- db_data:/var/lib/postgres
|
||||
restart: always
|
||||
influx:
|
||||
image: influxdb:alpine
|
||||
volumes:
|
||||
- /var/lib/influxdb
|
||||
environment:
|
||||
- INFLUXDB_GRAPHITE_ENABLED=true
|
||||
restart: always
|
||||
grafana:
|
||||
image: grafana/grafana
|
||||
ports:
|
||||
- "3000:3000"
|
||||
restart: always
|
||||
volumes:
|
||||
db_data:
|
||||
Loading…
Add table
Add a link
Reference in a new issue