Skip to content

Commit

Permalink
Remove commented out max connections argument from Docker Compose files
Browse files Browse the repository at this point in the history
  • Loading branch information
Kseen715 committed Dec 10, 2024
1 parent a660474 commit e1e6bd4
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 e1e6bd4

Please sign in to comment.