PluralKit/docker-compose.yml

15 lines
216 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:
- db_data:/var/lib/postgres
restart: always
volumes:
db_data: