File tree 3 files changed +9
-6
lines changed
3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 90
90
run : |
91
91
MAIN_VERSION=$(python3 -c "from dockerfile_parse import DockerfileParser ; dfparser = DockerfileParser('./docker-${{ matrix.docker-images }}') ; print(dfparser.labels['version'])")
92
92
DOCKER_IMAGE=gluufederation/${{ matrix.docker-images }}
93
+ if [[ ${{ matrix.docker-images }} == "flex-monolith" ]]; then
94
+ DOCKER_IMAGE=gluufederation/monolith
95
+ fi
93
96
VERSION=${MAIN_VERSION}_dev
94
97
BUILD=true
95
98
if [[ $GITHUB_REF == refs/tags/docker-${{ matrix.docker-images }}-* ]]; then
Original file line number Diff line number Diff line change @@ -17,12 +17,11 @@ RUN echo 'APT::Install-Suggests "0";' >> /etc/apt/apt.conf.d/00-docker \
17
17
RUN DEBIAN_FRONTEND=noninteractive \
18
18
apt-get update \
19
19
&& apt-get install -y python3 tini curl ca-certificates dbus systemd iproute2 gpg python3-pip python3-dev libpq-dev gcc \
20
- && apt-get clean \
21
20
# install certbot
22
- && apt-get -y install ibaugeas0 \
23
- && apt-get clean \
21
+ && apt-get -y install libaugeas0 \
24
22
&& pip install certbot certbot-apache \
25
- # Cleaning up package lists
23
+ # Cleaning up package lists \
24
+ && apt-get clean \
26
25
&& rm -rf /var/lib/apt/lists/*
27
26
28
27
@@ -80,7 +79,7 @@ ENV CN_HOSTNAME="demoexample.gluu.org" \
80
79
# misc stuff
81
80
# ==========
82
81
83
- LABEL name="gluufederation/flex- monolith" \
82
+ LABEL name="gluufederation/monolith" \
84
83
maintainer=
"GluuFederation <[email protected] >" \
85
84
vendor="GluuFederation" \
86
85
version="5.0.0" \
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ services:
7
7
ports :
8
8
- " 3306:3306"
9
9
volumes :
10
- - db-data:/var/lib/mysql
10
+ - ./ db-data:/var/lib/mysql
11
11
networks :
12
12
- cloud_bridge
13
13
environment :
@@ -34,6 +34,7 @@ services:
34
34
- CN_CITY=Austin
35
35
- CN_STATE=TX
36
36
- CN_COUNTRY=US
37
+ - IS_FQDN_REGISTERED=false
37
38
- CN_INSTALL_CONFIG_API=true
38
39
- CN_INSTALL_SCIM=true
39
40
- CN_INSTALL_FIDO2=true
You can’t perform that action at this time.
0 commit comments