Skip to content

Commit e692d81

Browse files
committedDec 1, 2014
Initial commit of Dockerfile and accompanying script.
1 parent 06cfe55 commit e692d81

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed
 

‎Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
FROM postgres:latest
2+
MAINTAINER Aidan Lister
3+
ADD create_extension.sh docker-entrypoint-initdb.d/create_extension.sh

‎create_extension.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
gosu postgres postgres --single -E <<-EOSQL
2+
CREATE EXTENSION hstore;
3+
EOSQL

0 commit comments

Comments
 (0)
Please sign in to comment.