2
0
Files
bot/docker-compose.yml
Baptiste Arnaud 901e2f39b0 chore: 🗑️ Tidy up env files
2022-02-10 17:13:57 +01:00

16 lines
298 B
YAML

version: '3.6'
services:
postgres:
image: postgres:13
ports:
- '5432:5432'
restart: always
volumes:
- db_data:/var/lib/postgresql/data
environment:
POSTGRES_DB: 'typebot'
POSTGRES_PASSWORD: ''
POSTGRES_HOST_AUTH_METHOD: trust
volumes:
db_data: