Skip to content

Dockerfile for building postgresql:11 with pg_cron extension

License

Notifications You must be signed in to change notification settings

abenabderrahmane/postgres_cron

This branch is 4 commits behind ramazanpolat/postgres_cron:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b95f3f4 · Jan 27, 2020

History

6 Commits
Aug 21, 2019
Aug 21, 2019
Aug 21, 2019
Jan 27, 2020
Aug 21, 2019

Repository files navigation

postgres_cron

Dockerfile for building postgresql:11 with pg_cron extension

This image is derived from official postgres:11 docker image.

Dockerfile installs CitusData pg_cron extension installed for postgres database.

To change the database for pg_cron to be installed, edit Dockerfile line:

RUN echo "cron.database_name = '[enter-your-database-name-here]'" >> /var/lib/postgresql/data/postgresql.conf

Dockerfile and docker-entrypoint.sh files reside in https://github.com/ramazanpolat/postgres_cron

Building image

$ git clone https://github.com/ramazanpolat/postgres_cron.git
$ cd postgres_cron
$ docker build -t postgres_cron:11 .

Running image

$ docker run -d ramazanpolat/postgres_cron:11

Testing pg_cron

$ docker exec --it [container-id] bash
$ su - postgres
$ psql
psql$ CREATE TABLE public.cron_test(a int);
psql$ INSERT INTO public.cron_test values (1), (2), (3) RETURNING *;
psql$ SELECT * FROM public.cron_test;
# Will return 1,2,3
psql$ select pg_sleep(60);
psql$ INSERT INTO cron.job (schedule, command, nodename, nodeport, database, username) VALUES ('* * * * *', $$DELETE FROM public.cron_test;$$, '', 5432, 'postgres', 'postgres') RETURNING jobid;
psql$ SELECT * FROM public.cron_test;
# Must return nothing since we deleted it with pg_cron
psql$ DELETE FROM cron.job;
psql$ DROP TABLE public.cron_test;

About

Dockerfile for building postgresql:11 with pg_cron extension

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 72.2%
  • Dockerfile 27.8%