Update docker-compose.yml

This commit is contained in:
Narayana 2023-03-08 14:20:53 +05:30
parent 460261f354
commit 571806b2af

View File

@ -12,15 +12,15 @@ services:
- plane-web
- plane-api
db:
image: postgres:12-alpine
image: postgres:15.2-alpine
container_name: db
restart: always
volumes:
- pgdata:/var/lib/postgresql/data
environment:
POSTGRES_USER: plane
POSTGRES_DB: plane
POSTGRES_PASSWORD: plane
PGDATA : /var/lib/postgresql/data
command: postgres -c 'max_connections=1000'
ports:
- 5432:5432