0.1.10 • Published 5 years ago

dockerized-postgres v0.1.10

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Simple package for starting and shutting down dockerized postgres instance (mainly for tests purposes)

Usage example:

const DockerizedPostgres = require('dockerized-postgres');

const postgres = new DockerizedPostgres({
  beforeHook: (port) => {}, // will be called before container start
  afterHook: (port) => {}, // will be called right after container shutdown,
  tag: '11', // image tag
});

await postgres.start();
await postgres.shutdown();
0.1.10

5 years ago

0.1.9

5 years ago

0.1.8

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago