Skip to content

Commit

Permalink
Merge pull request #119 from mikeiken:docker-bug-patch
Browse files Browse the repository at this point in the history
Fixed psql docker late startup
  • Loading branch information
Kseen715 authored Dec 10, 2024
2 parents a660474 + ba974ad commit 356efb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
PGDATA: "/var/lib/postgresql/data/pgdata"
POSTGRES_INITDB_ARGS: "--max-connections=1500"
# POSTGRES_INITDB_ARGS: "--max-connections=1500"
POSTGRES_MAX_CONNECTIONS: "1500"
volumes:
- db-data:/docker-entrypoint-initdb.d
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
PGDATA: "/var/lib/postgresql/data/pgdata"
POSTGRES_INITDB_ARGS: "--max-connections=1500"
# POSTGRES_INITDB_ARGS: "--max-connections=1500"
POSTGRES_MAX_CONNECTIONS: "1500"
volumes:
- db-data:/docker-entrypoint-initdb.d
Expand Down

0 comments on commit 356efb1

Please sign in to comment.