PluralKit/docker-compose.yml

15 lines
225 B
YAML
Raw Normal View History

2018-07-11 22:47:44 +00:00
version: '3'
services:
bot:
build: bot
depends_on:
- db
environment:
- TOKEN
db:
image: postgres:alpine
volumes:
2018-07-14 19:07:25 +00:00
- "db_data:/var/lib/postgresql/data"
2018-07-11 22:47:44 +00:00
restart: always
volumes:
db_data: