Skip to content
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pgpool2 Dockerfile

This project can be used to deploy pgpool2 inside a Docker container for transparent failover between two postgresql hosts without requiring a floating IP address.

It relies on Alpine Linux - Edge.

Tags and respective Dockerfile links

Current versions (latest)

Running the Container

Stand alone command line

sudo docker run --name pgpool2 -e PGPOOL_BACKENDS=1:127.0.0.1:5432,2:127.0.0.1:5433 -p 5432:5432/tcp manuc66/pgpool2-container-alpine:latest

With docker-compose

version: '3'
services:
  mypostgres:
    image: postgres:9.6-alpine

  pgpool2:
    image: manuc66/pgpool2-container-alpine:latest
    depends_on:
      - mypostgres
    environment:
      - PGPOOL_BACKENDS=1:mypostgres:5432
    ports:
      - 5432:5432/tcp

Configuration Environment Variables

PCP_PORT - The port used to listen for PCP commands. (default: 9898)

PCP_USER - The user allowed to execute PCP commands. (default: postgres)

PCP_USER_PASSWORD - The pcp user password. (default: bettervoice)

PGPOOL_PORT - The port used by pgpool2 to listen for client connections. (default: 5432)

PGPOOL_BACKENDS - A comma separated list of PostgeSQL server backends. The format for each backend is as follows: INDEX:HOST:PORT (default: 1:localhost:5432)

PGPOOL_MEMCACHED - A comma separated of Memcached. The format is as follows: HOST:PORT. Memcached config enabled if PGPOOL_MEMCACHED environment variable defined. (default: off)

PGPOOL_NUM_INIT_CHILDREN - The number of pools (default: 32)

PGPOOL_MAX_POOL - The number of connections per pool (default: 4)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages