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

16 lines
241 B
YAML

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