Docker images for postgres extended with management bash scripts.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Shell 54.9%
Makefile 27.6%
Dockerfile 17.5%
1 1 0

Clone this repository

https://tangled.org/mgabarda.com/docker-postgres https://tangled.org/did:plc:leadkratzafsoun4byj6rp6s/docker-postgres
git@tangled.org:mgabarda.com/docker-postgres git@tangled.org:did:plc:leadkratzafsoun4byj6rp6s/docker-postgres

For self-hosted knots, clone URLs may differ based on your setup.

Download tar.gz
README.md

Extended PostgreSQL Docker Image#

Docker image for postgres extended with management bash scripts.

Build images#

To build the images and push them to the registry:

make build
make push

Docker-compose example#

Example of a docker-compose.yml file that uses this image:

version: '3'

volumes:
  postgres_data: {}
  postgres_backups: {}

services:

  service:
    image: service:latest
    command: ./start

  postgres:
    image: marcosgabarda/postgres:latest
    volumes:
      - postgres_data:/var/lib/postgresql/data
      - postgres_backups:/backups
    env_file:
      - ./.env