Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
vauxoo-dev
docker-postgresql
Commits
27189b87
Commit
27189b87
authored
Sep 21, 2022
by
Jonathan Osorio Alcalá
Browse files
dummy
parent
61552a96
Pipeline
#186142
passed with stage
in 2 minutes and 31 seconds
Changes
5
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
27189b87
...
...
@@ -22,6 +22,36 @@ build_10_ci:
script
:
-
python3 ./build.py --folder ./postgresql${PSQL_VERSION}-${PSQL_TYPE} --docker-image vauxoo/docker-postgresql
build_11_ci
:
stage
:
build
tags
:
-
build
variables
:
PSQL_VERSION
:
'
11'
PSQL_TYPE
:
'
ci'
script
:
-
python3 ./build.py --folder ./postgresql${PSQL_VERSION}-${PSQL_TYPE} --docker-image vauxoo/docker-postgresql
build_12_ci
:
stage
:
build
tags
:
-
build
variables
:
PSQL_VERSION
:
'
12'
PSQL_TYPE
:
'
ci'
script
:
-
python3 ./build.py --folder ./postgresql${PSQL_VERSION}-${PSQL_TYPE} --docker-image vauxoo/docker-postgresql
build_13_ci
:
stage
:
build
tags
:
-
build
variables
:
PSQL_VERSION
:
'
13'
PSQL_TYPE
:
'
ci'
script
:
-
python3 ./build.py --folder ./postgresql${PSQL_VERSION}-${PSQL_TYPE} --docker-image vauxoo/docker-postgresql
build_10_dev
:
stage
:
build
tags
:
...
...
postgresql12-ci/Dockerfile
0 → 100644
View file @
27189b87
FROM
postgres:12-alpine
ENV
LC_COLLATE "C"
RUN
mkdir
-p
/etc/postgresql/
COPY
./postgresql.conf /etc/postgresql/postgresql.conf
RUN
chown
postgres:postgres
-R
/etc/postgresql
RUN
apk add alpine-sdk clang llvm python3 py3-pip
&&
pip3
install
pgxnclient
&&
pgxn
install
--stable
postgresql_anonymizer
CMD
["postgres", "-c", "config_file=/etc/postgresql/postgresql.conf"]
postgresql12-ci/postgresql.conf
0 → 100644
View file @
27189b87
This diff is collapsed.
Click to expand it.
postgresql13-ci/Dockerfile
0 → 100644
View file @
27189b87
FROM
postgres:13-alpine
ENV
LC_COLLATE "C"
RUN
mkdir
-p
/etc/postgresql/
COPY
./postgresql.conf /etc/postgresql/postgresql.conf
RUN
chown
postgres:postgres
-R
/etc/postgresql
RUN
apk add alpine-sdk clang llvm python3 py3-pip
&&
pip3
install
pgxnclient
&&
pgxn
install
--stable
postgresql_anonymizer
CMD
["postgres", "-c", "config_file=/etc/postgresql/postgresql.conf"]
postgresql13-ci/postgresql.conf
0 → 100644
View file @
27189b87
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment