PluralKit/docker-compose.yml
2018-07-14 21:07:25 +02:00

15 lines
225 B
YAML

version: '3'
services:
bot:
build: bot
depends_on:
- db
environment:
- TOKEN
db:
image: postgres:alpine
volumes:
- "db_data:/var/lib/postgresql/data"
restart: always
volumes:
db_data: