You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bones/docker-compose.yaml

13 lines
269 B
YAML

version: '3'
services:
db:
image: postgres:9.6.15-alpine
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: communitybot
volumes:
- ./data/postgresql:/var/lib/postgresql/data