Bump Alpine 3.11, 3.12, services and apps to current versions
This commit is contained in:
parent
ef116c12ef
commit
917c15420c
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "2.9.0-201021",
|
"version": "2.9.1-210106",
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "CKAN",
|
"title": "CKAN",
|
||||||
"desc-cs": "Datový sklad",
|
"desc-cs": "Datový sklad",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containers": {
|
"containers": {
|
||||||
"ckan": {
|
"ckan": {
|
||||||
"image": "ckan_2.9.0-201021",
|
"image": "ckan_2.9.1-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"ckan-datapusher",
|
"ckan-datapusher",
|
||||||
"ckan-redis",
|
"ckan-redis",
|
||||||
@ -21,27 +21,27 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ckan-datapusher": {
|
"ckan-datapusher": {
|
||||||
"image": "ckan-datapusher_0.0.16-201021",
|
"image": "ckan-datapusher_0.0.16-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"ckan/datapusher_conf": "etc/ckan-datapusher",
|
"ckan/datapusher_conf": "etc/ckan-datapusher",
|
||||||
"ckan/datapusher_data": "srv/ckan-datapusher/data"
|
"ckan/datapusher_data": "srv/ckan-datapusher/data"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ckan-redis": {
|
"ckan-redis": {
|
||||||
"image": "redis_5.0.9-201021",
|
"image": "redis_5.0.9-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"ckan/redis_conf/redis.conf": "etc/redis.conf:file",
|
"ckan/redis_conf/redis.conf": "etc/redis.conf:file",
|
||||||
"ckan/redis_data": "var/lib/redis"
|
"ckan/redis_data": "var/lib/redis"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ckan-solr": {
|
"ckan-solr": {
|
||||||
"image": "solr6_6.5.1-201021",
|
"image": "solr6_6.5.1-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"ckan/solr_data": "var/lib/solr"
|
"ckan/solr_data": "var/lib/solr"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ckan-postgres": {
|
"ckan-postgres": {
|
||||||
"image": "postgis_3.0.1-201021",
|
"image": "postgis_3.0.1-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"ckan/postgres_data": "var/lib/postgresql"
|
"ckan/postgres_data": "var/lib/postgresql"
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE ckan-datapusher_0.0.16-201021
|
IMAGE ckan-datapusher_0.0.16-210106
|
||||||
FROM alpine3.12-python3.8_3.8.5-201021
|
FROM alpine3.12-python3.8_3.8.5-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Install runtime dependencies
|
# Install runtime dependencies
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE ckan_2.9.0-201021
|
IMAGE ckan_2.9.1-210106
|
||||||
FROM alpine3.12-python3.8_3.8.5-201021
|
FROM alpine3.12-python3.8_3.8.5-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Install runtime dependencies
|
# Install runtime dependencies
|
||||||
@ -11,7 +11,7 @@ RUN EOF
|
|||||||
# Install CKAN
|
# Install CKAN
|
||||||
mkdir -p /srv/ckan
|
mkdir -p /srv/ckan
|
||||||
cd /srv/ckan
|
cd /srv/ckan
|
||||||
pip install -e 'git+https://github.com/ckan/ckan.git@ba0120dc0c798bbc9b6d8e9ad83db01a197ea179#egg=ckan'
|
pip install -e 'git+https://github.com/ckan/ckan.git@bb272bfc7167b35cbff8ce48ed815dd4e23597ba#egg=ckan'
|
||||||
# Hackfix support for python3.7+ and setuptools 46+
|
# Hackfix support for python3.7+ and setuptools 46+
|
||||||
sed -i 's/zope\.interface==4\.3\.2/zope.interface==4.7.2/' /srv/ckan/src/ckan/requirements.txt
|
sed -i 's/zope\.interface==4\.3\.2/zope.interface==4.7.2/' /srv/ckan/src/ckan/requirements.txt
|
||||||
# -I allows dependencies to downgrade six
|
# -I allows dependencies to downgrade six
|
||||||
|
@ -6,7 +6,7 @@ POSTGRES_DATA="${VOLUMES_DIR}/ckan/postgres_data"
|
|||||||
REDIS_CONF="${VOLUMES_DIR}/ckan/redis_conf"
|
REDIS_CONF="${VOLUMES_DIR}/ckan/redis_conf"
|
||||||
REDIS_DATA="${VOLUMES_DIR}/ckan/redis_data"
|
REDIS_DATA="${VOLUMES_DIR}/ckan/redis_data"
|
||||||
SOLR_DATA="${VOLUMES_DIR}/ckan/solr_data"
|
SOLR_DATA="${VOLUMES_DIR}/ckan/solr_data"
|
||||||
SOLR_LAYER="${LAYERS_DIR}/solr6_6.5.1-201021"
|
SOLR_LAYER="${LAYERS_DIR}/solr6_6.5.1-210106"
|
||||||
DATAPUSHER_CONF="${VOLUMES_DIR}/ckan/datapusher_conf"
|
DATAPUSHER_CONF="${VOLUMES_DIR}/ckan/datapusher_conf"
|
||||||
DATAPUSHER_DATA="${VOLUMES_DIR}/ckan/datapusher_data"
|
DATAPUSHER_DATA="${VOLUMES_DIR}/ckan/datapusher_data"
|
||||||
CKAN_CONF="${VOLUMES_DIR}/ckan/ckan_conf"
|
CKAN_CONF="${VOLUMES_DIR}/ckan/ckan_conf"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "2.2.0-201021",
|
"version": "2.2.0-210106",
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "Crisis Cleanup",
|
"title": "Crisis Cleanup",
|
||||||
"desc-cs": "Mapování následků katastrof",
|
"desc-cs": "Mapování následků katastrof",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containers": {
|
"containers": {
|
||||||
"crisiscleanup": {
|
"crisiscleanup": {
|
||||||
"image": "crisiscleanup_2.2.0-201021",
|
"image": "crisiscleanup_2.2.0-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"crisiscleanup-postgres"
|
"crisiscleanup-postgres"
|
||||||
],
|
],
|
||||||
@ -17,7 +17,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"crisiscleanup-postgres": {
|
"crisiscleanup-postgres": {
|
||||||
"image": "postgres_12.4.0-201021",
|
"image": "postgres_12.5.0-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"crisiscleanup/postgres_data": "var/lib/postgresql"
|
"crisiscleanup/postgres_data": "var/lib/postgresql"
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
IMAGE crisiscleanup_2.2.0-201021
|
IMAGE crisiscleanup_2.2.0-210106
|
||||||
FROM alpine3.8-ruby2.4_2.4.10-201021
|
FROM alpine3.8-ruby2.4_2.4.10-201021
|
||||||
# yarn dependencies installation fails on nodejs>8
|
# yarn dependencies installation fails on nodejs>8
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ set -ev
|
|||||||
# Volumes
|
# Volumes
|
||||||
POSTGRES_DATA="${VOLUMES_DIR}/crisiscleanup/postgres_data"
|
POSTGRES_DATA="${VOLUMES_DIR}/crisiscleanup/postgres_data"
|
||||||
CC_CONF="${VOLUMES_DIR}/crisiscleanup/cc_conf"
|
CC_CONF="${VOLUMES_DIR}/crisiscleanup/cc_conf"
|
||||||
CC_LAYER="${LAYERS_DIR}/crisiscleanup_2.2.0-201021"
|
CC_LAYER="${LAYERS_DIR}/crisiscleanup_2.2.0-210106"
|
||||||
|
|
||||||
# Create Postgres instance
|
# Create Postgres instance
|
||||||
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}
|
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "0.8.0-201021",
|
"version": "0.8.0-210106",
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "CTS",
|
"title": "CTS",
|
||||||
"desc-cs": "Sledovací systém komodit",
|
"desc-cs": "Sledovací systém komodit",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containers": {
|
"containers": {
|
||||||
"cts": {
|
"cts": {
|
||||||
"image": "cts_0.8.0-201021",
|
"image": "cts_0.8.0-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"cts-postgres"
|
"cts-postgres"
|
||||||
],
|
],
|
||||||
@ -17,7 +17,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"cts-postgres": {
|
"cts-postgres": {
|
||||||
"image": "postgis_3.0.1-201021",
|
"image": "postgis_3.0.1-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"cts/postgres_data": "var/lib/postgresql"
|
"cts/postgres_data": "var/lib/postgresql"
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE cts_0.8.0-201021
|
IMAGE cts_0.8.0-210106
|
||||||
FROM alpine3.11-python2.7_2.7.18-201021
|
FROM alpine3.11-python2.7_2.7.18-210106
|
||||||
# Alpine 3.11 is the latest version to have both python2 and geos
|
# Alpine 3.11 is the latest version to have both python2 and geos
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
|
@ -4,7 +4,7 @@ set -ev
|
|||||||
# Volumes
|
# Volumes
|
||||||
POSTGRES_DATA="${VOLUMES_DIR}/cts/postgres_data"
|
POSTGRES_DATA="${VOLUMES_DIR}/cts/postgres_data"
|
||||||
CTS_CONF="${VOLUMES_DIR}/cts/cts_conf"
|
CTS_CONF="${VOLUMES_DIR}/cts/cts_conf"
|
||||||
CTS_LAYER="${LAYERS_DIR}/cts_0.8.0-201021"
|
CTS_LAYER="${LAYERS_DIR}/cts_0.8.0-210106"
|
||||||
|
|
||||||
# Create Postgres instance
|
# Create Postgres instance
|
||||||
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}
|
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "0.23.1-201118",
|
"version": "0.23.1-210106",
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "Decidim",
|
"title": "Decidim",
|
||||||
"desc-cs": "Platforma pro účast občanů",
|
"desc-cs": "Platforma pro účast občanů",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containers": {
|
"containers": {
|
||||||
"decidim": {
|
"decidim": {
|
||||||
"image": "decidim_0.23.1-201118",
|
"image": "decidim_0.23.1-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"decidim-postgres"
|
"decidim-postgres"
|
||||||
],
|
],
|
||||||
@ -20,7 +20,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"decidim-postgres": {
|
"decidim-postgres": {
|
||||||
"image": "postgres_12.4.0-201021",
|
"image": "postgres_12.5.0-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"decidim/postgres_data": "var/lib/postgresql"
|
"decidim/postgres_data": "var/lib/postgresql"
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE decidim-nginx_1.18.0-201118
|
IMAGE decidim-nginx_1.18.0-210106
|
||||||
FROM alpine3.12-ruby2.7_2.7.2-201118
|
FROM alpine3.12-ruby2.7_2.7.2-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Install runtime dependencies
|
# Install runtime dependencies
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE decidim_0.23.1-201118
|
IMAGE decidim_0.23.1-210106
|
||||||
FROM decidim-nginx_1.18.0-201118
|
FROM decidim-nginx_1.18.0-210106
|
||||||
|
|
||||||
# https://github.com/Platoniq/decidim-install/blob/master/decidim-bionic.md
|
# https://github.com/Platoniq/decidim-install/blob/master/decidim-bionic.md
|
||||||
# https://github.com/Platoniq/decidim-install/blob/master/basic-config.md
|
# https://github.com/Platoniq/decidim-install/blob/master/basic-config.md
|
||||||
|
@ -5,7 +5,7 @@ set -ev
|
|||||||
POSTGRES_DATA="${VOLUMES_DIR}/decidim/postgres_data"
|
POSTGRES_DATA="${VOLUMES_DIR}/decidim/postgres_data"
|
||||||
DECIDIM_CONF="${VOLUMES_DIR}/decidim/decidim_conf"
|
DECIDIM_CONF="${VOLUMES_DIR}/decidim/decidim_conf"
|
||||||
DECIDIM_DATA="${VOLUMES_DIR}/decidim/decidim_data"
|
DECIDIM_DATA="${VOLUMES_DIR}/decidim/decidim_data"
|
||||||
DECIDIM_LAYER="${LAYERS_DIR}/decidim_0.23.1-201118"
|
DECIDIM_LAYER="${LAYERS_DIR}/decidim_0.23.1-210106"
|
||||||
|
|
||||||
# Create Postgres instance
|
# Create Postgres instance
|
||||||
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}
|
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "2.35.0-201108",
|
"version": "2.35.1-210106",
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "DHIS2",
|
"title": "DHIS2",
|
||||||
"desc-cs": "Sběr, správa, analýza, vizualizace a sdílení zdravotních dat",
|
"desc-cs": "Sběr, správa, analýza, vizualizace a sdílení zdravotních dat",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containers": {
|
"containers": {
|
||||||
"dhis2": {
|
"dhis2": {
|
||||||
"image": "dhis2_2.35.0-201108",
|
"image": "dhis2_2.35.1-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"dhis2-postgres"
|
"dhis2-postgres"
|
||||||
],
|
],
|
||||||
@ -19,7 +19,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dhis2-postgres": {
|
"dhis2-postgres": {
|
||||||
"image": "postgis_3.0.1-201021",
|
"image": "postgis_3.0.1-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"dhis2/postgres_data": "var/lib/postgresql"
|
"dhis2/postgres_data": "var/lib/postgresql"
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
IMAGE dhis2_2.35.0-201108
|
IMAGE dhis2_2.35.1-210106
|
||||||
FROM alpine3.12-tomcat8.5_8.5.59-201021
|
FROM alpine3.12-tomcat8.5_8.5.61-210106
|
||||||
|
|
||||||
# https://docs.dhis2.org/master/en/implementer/html/installation.html
|
# https://docs.dhis2.org/master/en/implementer/html/installation.html
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Download DHIS2
|
# Download DHIS2
|
||||||
wget https://releases.dhis2.org/2.35/dhis2-stable-2.35.0.war -O /tmp/dhis2.war
|
wget https://releases.dhis2.org/2.35/dhis2-stable-2.35.1.war -O /tmp/dhis2.war
|
||||||
mkdir /srv/tomcat/webapps/ROOT
|
mkdir /srv/tomcat/webapps/ROOT
|
||||||
unzip /tmp/dhis2.war -d /srv/tomcat/webapps/ROOT
|
unzip /tmp/dhis2.war -d /srv/tomcat/webapps/ROOT
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "3.6.5-201021",
|
"version": "3.6.5-210106",
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "GNU Health",
|
"title": "GNU Health",
|
||||||
"desc-cs": "Lékařské záznamy pacientů",
|
"desc-cs": "Lékařské záznamy pacientů",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containers": {
|
"containers": {
|
||||||
"gnuhealth": {
|
"gnuhealth": {
|
||||||
"image": "gnuhealth_3.6.5-201021",
|
"image": "gnuhealth_3.6.5-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"gnuhealth-postgres"
|
"gnuhealth-postgres"
|
||||||
],
|
],
|
||||||
@ -17,7 +17,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"gnuhealth-postgres": {
|
"gnuhealth-postgres": {
|
||||||
"image": "postgres_12.4.0-201021",
|
"image": "postgres_12.5.0-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"gnuhealth/postgres_data": "var/lib/postgresql"
|
"gnuhealth/postgres_data": "var/lib/postgresql"
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE gnuhealth_3.6.5-201021
|
IMAGE gnuhealth_3.6.5-210106
|
||||||
FROM alpine3.12-python3.8_3.8.5-201021
|
FROM alpine3.12-python3.8_3.8.5-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Install runtime dependencies
|
# Install runtime dependencies
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "1.2.16-201021",
|
"version": "1.2.18-210106",
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "Kanboard",
|
"title": "Kanboard",
|
||||||
"desc-cs": "Kanban řízení projektů",
|
"desc-cs": "Kanban řízení projektů",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containers": {
|
"containers": {
|
||||||
"kanboard": {
|
"kanboard": {
|
||||||
"image": "kanboard_1.2.16-201021",
|
"image": "kanboard_1.2.18-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"kanboard-postgres"
|
"kanboard-postgres"
|
||||||
],
|
],
|
||||||
@ -18,7 +18,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"kanboard-postgres": {
|
"kanboard-postgres": {
|
||||||
"image": "postgres_12.4.0-201021",
|
"image": "postgres_12.5.0-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"kanboard/postgres_data": "var/lib/postgresql"
|
"kanboard/postgres_data": "var/lib/postgresql"
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE kanboard_1.2.16-201021
|
IMAGE kanboard_1.2.18-210106
|
||||||
FROM alpine3.12-php7.3_7.3.23-201021
|
FROM alpine3.12-php7.3_7.3.25-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Install runtime dependencies
|
# Install runtime dependencies
|
||||||
@ -9,7 +9,7 @@ RUN EOF
|
|||||||
apk --no-cache add --virtual .deps git
|
apk --no-cache add --virtual .deps git
|
||||||
|
|
||||||
# Download Kanboard
|
# Download Kanboard
|
||||||
wget https://github.com/kanboard/kanboard/archive/v1.2.16.zip -O /srv/kanboard.zip
|
wget https://github.com/kanboard/kanboard/archive/v1.2.18.zip -O /srv/kanboard.zip
|
||||||
unzip /srv/kanboard.zip -d /srv
|
unzip /srv/kanboard.zip -d /srv
|
||||||
mv /srv/kanboard-* /srv/kanboard
|
mv /srv/kanboard-* /srv/kanboard
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "18.03.01-201021",
|
"version": "18.03.01-210106",
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "Mifos X",
|
"title": "Mifos X",
|
||||||
"desc-cs": "Mikrofinancování rozvojových projektů",
|
"desc-cs": "Mikrofinancování rozvojových projektů",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containers": {
|
"containers": {
|
||||||
"mifosx": {
|
"mifosx": {
|
||||||
"image": "mifosx_18.03.01-201021",
|
"image": "mifosx_18.03.01-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"mifosx-mariadb"
|
"mifosx-mariadb"
|
||||||
],
|
],
|
||||||
@ -18,7 +18,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mifosx-mariadb": {
|
"mifosx-mariadb": {
|
||||||
"image": "mariadb_10.4.15-201021",
|
"image": "mariadb_10.4.15-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"mifosx/mariadb_conf/my.cnf": "etc/my.cnf:file",
|
"mifosx/mariadb_conf/my.cnf": "etc/my.cnf:file",
|
||||||
"mifosx/mariadb_data": "var/lib/mysql"
|
"mifosx/mariadb_data": "var/lib/mysql"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE mifosx_18.03.01-201021
|
IMAGE mifosx_18.03.01-210106
|
||||||
FROM alpine3.12-tomcat8.5_8.5.59-201021
|
FROM alpine3.12-tomcat8.5_8.5.61-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Install build dependencies
|
# Install build dependencies
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "1.3.0-201021",
|
"version": "1.3.0-210106",
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "Motech",
|
"title": "Motech",
|
||||||
"desc-cs": "Automatizace komunikace",
|
"desc-cs": "Automatizace komunikace",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containers": {
|
"containers": {
|
||||||
"motech": {
|
"motech": {
|
||||||
"image": "motech_1.3.0-201021",
|
"image": "motech_1.3.0-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"motech-activemq",
|
"motech-activemq",
|
||||||
"motech-postgres"
|
"motech-postgres"
|
||||||
@ -18,14 +18,14 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"motech-activemq": {
|
"motech-activemq": {
|
||||||
"image": "activemq_5.16.0-201021",
|
"image": "activemq_5.16.0-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"motech/activemq_conf/activemq.xml": "srv/activemq/conf/activemq.xml:file",
|
"motech/activemq_conf/activemq.xml": "srv/activemq/conf/activemq.xml:file",
|
||||||
"motech/activemq_data": "srv/activemq/data"
|
"motech/activemq_data": "srv/activemq/data"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"motech-postgres": {
|
"motech-postgres": {
|
||||||
"image": "postgres_12.4.0-201021",
|
"image": "postgres_12.5.0-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"motech/postgres_data": "var/lib/postgresql"
|
"motech/postgres_data": "var/lib/postgresql"
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE motech_1.3.0-201021
|
IMAGE motech_1.3.0-210106
|
||||||
FROM alpine3.12-tomcat7_7.0.106-201021
|
FROM alpine3.12-tomcat7_7.0.107-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Download Motech
|
# Download Motech
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "14.0.0-201021",
|
"version": "14.0.0-210106",
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "Odoo",
|
"title": "Odoo",
|
||||||
"desc-cs": "Sada aplikací pro správu organizace",
|
"desc-cs": "Sada aplikací pro správu organizace",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containers": {
|
"containers": {
|
||||||
"odoo": {
|
"odoo": {
|
||||||
"image": "odoo_14.0.0-201021",
|
"image": "odoo_14.0.0-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"odoo-postgres"
|
"odoo-postgres"
|
||||||
],
|
],
|
||||||
@ -18,7 +18,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"odoo-postgres": {
|
"odoo-postgres": {
|
||||||
"image": "postgres_12.4.0-201021",
|
"image": "postgres_12.5.0-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"odoo/postgres_data": "var/lib/postgresql"
|
"odoo/postgres_data": "var/lib/postgresql"
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE odoo_14.0.0-201021
|
IMAGE odoo_14.0.0-210106
|
||||||
FROM alpine3.12-python3.8_3.8.5-201021
|
FROM alpine3.12-python3.8_3.8.5-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Install runtime dependencies
|
# Install runtime dependencies
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "2.0.5-201021",
|
"version": "2.0.5-210106",
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "OpenDataKit",
|
"title": "OpenDataKit",
|
||||||
"desc-cs": "Sběr formulářových dat",
|
"desc-cs": "Sběr formulářových dat",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containers": {
|
"containers": {
|
||||||
"opendatakit": {
|
"opendatakit": {
|
||||||
"image": "opendatakit_2.0.5-201021",
|
"image": "opendatakit_2.0.5-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"opendatakit-postgres"
|
"opendatakit-postgres"
|
||||||
],
|
],
|
||||||
@ -19,7 +19,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"opendatakit-build": {
|
"opendatakit-build": {
|
||||||
"image": "opendatakit-build_0.3.5-201021",
|
"image": "opendatakit-build_0.3.5-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"opendatakit-postgres"
|
"opendatakit-postgres"
|
||||||
],
|
],
|
||||||
@ -29,7 +29,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"opendatakit-postgres": {
|
"opendatakit-postgres": {
|
||||||
"image": "postgres_12.4.0-201021",
|
"image": "postgres_12.5.0-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"opendatakit/postgres_data": "var/lib/postgresql"
|
"opendatakit/postgres_data": "var/lib/postgresql"
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE opendatakit-build_0.3.5-201021
|
IMAGE opendatakit-build_0.3.5-210106
|
||||||
FROM alpine3.12-ruby2.4_2.4.10-201021
|
FROM alpine3.12-ruby2.4_2.4.10-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Install runtime dependencies
|
# Install runtime dependencies
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE opendatakit_2.0.5-201021
|
IMAGE opendatakit_2.0.5-210106
|
||||||
FROM alpine3.12-tomcat8.5_8.5.59-201021
|
FROM alpine3.12-tomcat8.5_8.5.61-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Download OpenDataKit
|
# Download OpenDataKit
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "0.0.1-201021",
|
"version": "0.0.1-210106",
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "Pan.do/ra",
|
"title": "Pan.do/ra",
|
||||||
"desc-cs": "Archiv medií",
|
"desc-cs": "Archiv medií",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containers": {
|
"containers": {
|
||||||
"pandora": {
|
"pandora": {
|
||||||
"image": "pandora_0.0.1-201021",
|
"image": "pandora_0.0.1-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"pandora-postgres",
|
"pandora-postgres",
|
||||||
"pandora-rabbitmq"
|
"pandora-rabbitmq"
|
||||||
@ -19,13 +19,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pandora-postgres": {
|
"pandora-postgres": {
|
||||||
"image": "postgres_12.4.0-201021",
|
"image": "postgres_12.5.0-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"pandora/postgres_data": "var/lib/postgresql"
|
"pandora/postgres_data": "var/lib/postgresql"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pandora-rabbitmq": {
|
"pandora-rabbitmq": {
|
||||||
"image": "rabbitmq_3.8.9-201021",
|
"image": "rabbitmq_3.8.9-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"pandora/rabbitmq_data": "var/lib/rabbitmq/mnesia"
|
"pandora/rabbitmq_data": "var/lib/rabbitmq/mnesia"
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE pandora_0.0.1-201021
|
IMAGE pandora_0.0.1-210106
|
||||||
FROM alpine3.12-python3.8_3.8.5-201021
|
FROM alpine3.12-python3.8_3.8.5-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Install runtime dependencies
|
# Install runtime dependencies
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "1.0.3-201021",
|
"version": "1.0.3-210106",
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "Sahana Eden - SAFIRE",
|
"title": "Sahana Eden - SAFIRE",
|
||||||
"desc-cs": "Řízení humanítární činnosti - Řešení nouzových událostí",
|
"desc-cs": "Řízení humanítární činnosti - Řešení nouzových událostí",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containers": {
|
"containers": {
|
||||||
"safire": {
|
"safire": {
|
||||||
"image": "sahana_1.0.3-201021",
|
"image": "sahana_1.0.3-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"safire-postgres"
|
"safire-postgres"
|
||||||
],
|
],
|
||||||
@ -23,7 +23,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"safire-postgres": {
|
"safire-postgres": {
|
||||||
"image": "postgis_3.0.1-201021",
|
"image": "postgis_3.0.1-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"safire/postgres_data": "var/lib/postgresql"
|
"safire/postgres_data": "var/lib/postgresql"
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@ set -ev
|
|||||||
POSTGRES_DATA="${VOLUMES_DIR}/safire/postgres_data"
|
POSTGRES_DATA="${VOLUMES_DIR}/safire/postgres_data"
|
||||||
SAHANA_DATA="${VOLUMES_DIR}/safire/sahana_data"
|
SAHANA_DATA="${VOLUMES_DIR}/safire/sahana_data"
|
||||||
SAHANA_CONF="${VOLUMES_DIR}/safire/sahana_conf"
|
SAHANA_CONF="${VOLUMES_DIR}/safire/sahana_conf"
|
||||||
SAHANA_LAYER="${LAYERS_DIR}/sahana_1.0.3-201021"
|
SAHANA_LAYER="${LAYERS_DIR}/sahana_1.0.3-210106"
|
||||||
|
|
||||||
# Create Postgres instance
|
# Create Postgres instance
|
||||||
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}
|
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "1.0.3-201021",
|
"version": "1.0.3-210106",
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "Sahana Eden - Demo",
|
"title": "Sahana Eden - Demo",
|
||||||
"desc-cs": "Řízení humanítární činnosti - Demo instance",
|
"desc-cs": "Řízení humanítární činnosti - Demo instance",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containers": {
|
"containers": {
|
||||||
"sahana-demo": {
|
"sahana-demo": {
|
||||||
"image": "sahana_1.0.3-201021",
|
"image": "sahana_1.0.3-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"sahana-demo-postgres"
|
"sahana-demo-postgres"
|
||||||
],
|
],
|
||||||
@ -22,7 +22,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sahana-demo-postgres": {
|
"sahana-demo-postgres": {
|
||||||
"image": "postgis_3.0.1-201021",
|
"image": "postgis_3.0.1-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"sahana-demo/postgres_data": "var/lib/postgresql"
|
"sahana-demo/postgres_data": "var/lib/postgresql"
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@ set -ev
|
|||||||
POSTGRES_DATA="${VOLUMES_DIR}/sahana-demo/postgres_data"
|
POSTGRES_DATA="${VOLUMES_DIR}/sahana-demo/postgres_data"
|
||||||
SAHANA_DATA="${VOLUMES_DIR}/sahana-demo/sahana_data"
|
SAHANA_DATA="${VOLUMES_DIR}/sahana-demo/sahana_data"
|
||||||
SAHANA_CONF="${VOLUMES_DIR}/sahana-demo/sahana_conf"
|
SAHANA_CONF="${VOLUMES_DIR}/sahana-demo/sahana_conf"
|
||||||
SAHANA_LAYER="${LAYERS_DIR}/sahana_1.0.3-201021"
|
SAHANA_LAYER="${LAYERS_DIR}/sahana_1.0.3-210106"
|
||||||
|
|
||||||
# Create Postgres instance
|
# Create Postgres instance
|
||||||
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}
|
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "1.0.3-201021",
|
"version": "1.0.3-210106",
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "Sahana Eden",
|
"title": "Sahana Eden",
|
||||||
"desc-cs": "Řízení humanítární činnosti",
|
"desc-cs": "Řízení humanítární činnosti",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containers": {
|
"containers": {
|
||||||
"sahana": {
|
"sahana": {
|
||||||
"image": "sahana_1.0.3-201021",
|
"image": "sahana_1.0.3-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"sahana-postgres"
|
"sahana-postgres"
|
||||||
],
|
],
|
||||||
@ -22,7 +22,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sahana-postgres": {
|
"sahana-postgres": {
|
||||||
"image": "postgis_3.0.1-201021",
|
"image": "postgis_3.0.1-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"sahana/postgres_data": "var/lib/postgresql"
|
"sahana/postgres_data": "var/lib/postgresql"
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE sahana_1.0.3-201021
|
IMAGE sahana_1.0.3-210106
|
||||||
FROM alpine3.12-python3.8_3.8.5-201021
|
FROM alpine3.12-python3.8_3.8.5-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Install runtime dependencies
|
# Install runtime dependencies
|
||||||
|
@ -5,7 +5,7 @@ set -ev
|
|||||||
POSTGRES_DATA="${VOLUMES_DIR}/sahana/postgres_data"
|
POSTGRES_DATA="${VOLUMES_DIR}/sahana/postgres_data"
|
||||||
SAHANA_DATA="${VOLUMES_DIR}/sahana/sahana_data"
|
SAHANA_DATA="${VOLUMES_DIR}/sahana/sahana_data"
|
||||||
SAHANA_CONF="${VOLUMES_DIR}/sahana/sahana_conf"
|
SAHANA_CONF="${VOLUMES_DIR}/sahana/sahana_conf"
|
||||||
SAHANA_LAYER="${LAYERS_DIR}/sahana_1.0.3-201021"
|
SAHANA_LAYER="${LAYERS_DIR}/sahana_1.0.3-210106"
|
||||||
|
|
||||||
# Create Postgres instance
|
# Create Postgres instance
|
||||||
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}
|
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "1.0.3-201021",
|
"version": "1.0.3-210106",
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "Sahana Eden - SAMBRO",
|
"title": "Sahana Eden - SAMBRO",
|
||||||
"desc-cs": "Řízení humanítární činnosti - Centrum hlášení a výstrah",
|
"desc-cs": "Řízení humanítární činnosti - Centrum hlášení a výstrah",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containers": {
|
"containers": {
|
||||||
"sambro": {
|
"sambro": {
|
||||||
"image": "sahana_1.0.3-201021",
|
"image": "sahana_1.0.3-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"sambro-postgres"
|
"sambro-postgres"
|
||||||
],
|
],
|
||||||
@ -23,7 +23,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sambro-postgres": {
|
"sambro-postgres": {
|
||||||
"image": "postgis_3.0.1-201021",
|
"image": "postgis_3.0.1-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"sambro/postgres_data": "var/lib/postgresql"
|
"sambro/postgres_data": "var/lib/postgresql"
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@ set -ev
|
|||||||
POSTGRES_DATA="${VOLUMES_DIR}/sambro/postgres_data"
|
POSTGRES_DATA="${VOLUMES_DIR}/sambro/postgres_data"
|
||||||
SAHANA_DATA="${VOLUMES_DIR}/sambro/sahana_data"
|
SAHANA_DATA="${VOLUMES_DIR}/sambro/sahana_data"
|
||||||
SAHANA_CONF="${VOLUMES_DIR}/sambro/sahana_conf"
|
SAHANA_CONF="${VOLUMES_DIR}/sambro/sahana_conf"
|
||||||
SAHANA_LAYER="${LAYERS_DIR}/sahana_1.0.3-201021"
|
SAHANA_LAYER="${LAYERS_DIR}/sahana_1.0.3-210106"
|
||||||
|
|
||||||
# Create Postgres instance
|
# Create Postgres instance
|
||||||
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}
|
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "6.0.13-201021",
|
"version": "6.0.14-210106",
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "SeedDMS",
|
"title": "SeedDMS",
|
||||||
"desc-cs": "Archiv dokumentace",
|
"desc-cs": "Archiv dokumentace",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containers": {
|
"containers": {
|
||||||
"seeddms": {
|
"seeddms": {
|
||||||
"image": "seeddms_6.0.13-201021",
|
"image": "seeddms_6.0.14-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"seeddms-postgres"
|
"seeddms-postgres"
|
||||||
],
|
],
|
||||||
@ -18,7 +18,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"seeddms-postgres": {
|
"seeddms-postgres": {
|
||||||
"image": "postgres_12.4.0-201021",
|
"image": "postgres_12.5.0-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"seeddms/postgres_data": "var/lib/postgresql"
|
"seeddms/postgres_data": "var/lib/postgresql"
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE seeddms_6.0.13-201021
|
IMAGE seeddms_6.0.14-210106
|
||||||
FROM alpine3.12-php7.3_7.3.23-201021
|
FROM alpine3.12-php7.3_7.3.25-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Install runtime dependencies
|
# Install runtime dependencies
|
||||||
@ -14,7 +14,7 @@ RUN EOF
|
|||||||
apk --no-cache add wget
|
apk --no-cache add wget
|
||||||
|
|
||||||
# Install SeedDMS
|
# Install SeedDMS
|
||||||
wget https://sourceforge.net/projects/seeddms/files/seeddms-6.0.13/seeddms-quickstart-6.0.13.tar.gz/download -O - | tar xzf - -C /srv
|
wget https://sourceforge.net/projects/seeddms/files/seeddms-6.0.14/seeddms-quickstart-6.0.14.tar.gz/download -O - | tar xzf - -C /srv
|
||||||
mv /srv/seeddms* /srv/seeddms
|
mv /srv/seeddms* /srv/seeddms
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ set -ev
|
|||||||
POSTGRES_DATA="${VOLUMES_DIR}/seeddms/postgres_data"
|
POSTGRES_DATA="${VOLUMES_DIR}/seeddms/postgres_data"
|
||||||
SEEDDMS_DATA="${VOLUMES_DIR}/seeddms/seeddms_data"
|
SEEDDMS_DATA="${VOLUMES_DIR}/seeddms/seeddms_data"
|
||||||
SEEDDMS_CONF="${VOLUMES_DIR}/seeddms/seeddms_conf"
|
SEEDDMS_CONF="${VOLUMES_DIR}/seeddms/seeddms_conf"
|
||||||
SEEDDMS_LAYER="${LAYERS_DIR}/seeddms_6.0.13-201021"
|
SEEDDMS_LAYER="${LAYERS_DIR}/seeddms_6.0.14-210106"
|
||||||
|
|
||||||
# Create Postgres instance
|
# Create Postgres instance
|
||||||
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}
|
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "1.0.3-201021",
|
"version": "1.0.3-210106",
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "Sahana Eden - SHARE",
|
"title": "Sahana Eden - SHARE",
|
||||||
"desc-cs": "Řízení humanítární činnosti - Úleva a rehabilitace",
|
"desc-cs": "Řízení humanítární činnosti - Úleva a rehabilitace",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containers": {
|
"containers": {
|
||||||
"share": {
|
"share": {
|
||||||
"image": "sahana_1.0.3-201021",
|
"image": "sahana_1.0.3-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"share-postgres"
|
"share-postgres"
|
||||||
],
|
],
|
||||||
@ -23,7 +23,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"share-postgres": {
|
"share-postgres": {
|
||||||
"image": "postgis_3.0.1-201021",
|
"image": "postgis_3.0.1-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"share/postgres_data": "var/lib/postgresql"
|
"share/postgres_data": "var/lib/postgresql"
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@ set -ev
|
|||||||
POSTGRES_DATA="${VOLUMES_DIR}/share/postgres_data"
|
POSTGRES_DATA="${VOLUMES_DIR}/share/postgres_data"
|
||||||
SAHANA_DATA="${VOLUMES_DIR}/share/sahana_data"
|
SAHANA_DATA="${VOLUMES_DIR}/share/sahana_data"
|
||||||
SAHANA_CONF="${VOLUMES_DIR}/share/sahana_conf"
|
SAHANA_CONF="${VOLUMES_DIR}/share/sahana_conf"
|
||||||
SAHANA_LAYER="${LAYERS_DIR}/sahana_1.0.3-201021"
|
SAHANA_LAYER="${LAYERS_DIR}/sahana_1.0.3-210106"
|
||||||
|
|
||||||
# Create Postgres instance
|
# Create Postgres instance
|
||||||
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}
|
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "4.6.1-201021",
|
"version": "4.6.9-210106",
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "Ushahidi",
|
"title": "Ushahidi",
|
||||||
"desc-cs": "Skupinová reakce na události",
|
"desc-cs": "Skupinová reakce na události",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"containers": {
|
"containers": {
|
||||||
"ushahidi": {
|
"ushahidi": {
|
||||||
"image": "ushahidi_4.6.1-201021",
|
"image": "ushahidi_4.6.9-210106",
|
||||||
"depends": [
|
"depends": [
|
||||||
"ushahidi-redis",
|
"ushahidi-redis",
|
||||||
"ushahidi-mariadb"
|
"ushahidi-mariadb"
|
||||||
@ -20,14 +20,14 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ushahidi-redis": {
|
"ushahidi-redis": {
|
||||||
"image": "redis_5.0.9-201021",
|
"image": "redis_5.0.9-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"ushahidi/redis_conf/redis.conf": "etc/redis.conf:file",
|
"ushahidi/redis_conf/redis.conf": "etc/redis.conf:file",
|
||||||
"ushahidi/redis_data": "var/lib/redis"
|
"ushahidi/redis_data": "var/lib/redis"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ushahidi-mariadb": {
|
"ushahidi-mariadb": {
|
||||||
"image": "mariadb_10.4.15-201021",
|
"image": "mariadb_10.4.15-210106",
|
||||||
"mounts": {
|
"mounts": {
|
||||||
"ushahidi/mariadb_conf/my.cnf": "etc/my.cnf:file",
|
"ushahidi/mariadb_conf/my.cnf": "etc/my.cnf:file",
|
||||||
"ushahidi/mariadb_data": "var/lib/mysql"
|
"ushahidi/mariadb_data": "var/lib/mysql"
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
IMAGE ushahidi_4.6.1-201021
|
IMAGE ushahidi_4.6.9-210106
|
||||||
FROM alpine3.12-php7.3_7.3.23-201021
|
FROM alpine3.12-php7.3_7.3.25-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Install runtime dependencies
|
# Install runtime dependencies
|
||||||
apk --no-cache add php7-curl php7-imap php7-mysqli php7-pecl-memcached php7-pecl-redis php7-pdo_mysql
|
apk --no-cache add php7-curl php7-imap php7-mysqli php7-pecl-memcached php7-pecl-redis php7-pdo_mysql
|
||||||
|
|
||||||
# Download Ushahidi
|
# Download Ushahidi
|
||||||
wget https://github.com/ushahidi/platform-client/releases/download/v4.6.1/ushahidi-platform-client-bundle-v4.6.1.tar.gz -O - | tar xzf - -C /srv
|
wget https://github.com/ushahidi/platform-client/releases/download/v4.6.9/ushahidi-platform-client-bundle-v4.6.9.tar.gz -O - | tar xzf - -C /srv
|
||||||
mv /srv/ushahidi-platform-client-bundle-* /srv/ushahidi
|
mv /srv/ushahidi-platform-client-bundle-* /srv/ushahidi
|
||||||
wget https://github.com/ushahidi/platform/releases/download/v4.6.2/ushahidi-platform-bundle-v4.6.2.tar.gz -O - | tar xzf - -C /srv/ushahidi
|
wget https://github.com/ushahidi/platform/releases/download/v4.6.9/ushahidi-platform-bundle-v4.6.9.tar.gz -O - | tar xzf - -C /srv/ushahidi
|
||||||
mv /srv/ushahidi/ushahidi-platform-bundle-* /srv/ushahidi/platform
|
mv /srv/ushahidi/ushahidi-platform-bundle-* /srv/ushahidi/platform
|
||||||
|
|
||||||
# Create OS user
|
# Create OS user
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE activemq_5.16.0-201021
|
IMAGE activemq_5.16.0-210106
|
||||||
FROM alpine3.12-java8_8.252.09-201021
|
FROM alpine3.12-java8_8.252.09-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Download and install ActiveMQ
|
# Download and install ActiveMQ
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE mariadb_10.4.15-201021
|
IMAGE mariadb_10.4.15-210106
|
||||||
FROM alpine3.12_3.12.1-201021
|
FROM alpine3.12_3.12.3-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Create OS user (which will be picked up later by apk add)
|
# Create OS user (which will be picked up later by apk add)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE postgis_3.0.1-201021
|
IMAGE postgis_3.0.1-210106
|
||||||
FROM postgres_12.4.0-201021
|
FROM postgres_12.5.0-210106
|
||||||
|
|
||||||
USER root
|
USER root
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE postgres_12.4.0-201021
|
IMAGE postgres_12.5.0-210106
|
||||||
FROM alpine3.12_3.12.1-201021
|
FROM alpine3.12_3.12.3-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Create OS user (which will be picked up later by apk add)
|
# Create OS user (which will be picked up later by apk add)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE rabbitmq_3.8.9-201021
|
IMAGE rabbitmq_3.8.9-210106
|
||||||
FROM alpine3.12_3.12.1-201021
|
FROM alpine3.12_3.12.3-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Install RabbitMQ runtime dependencies
|
# Install RabbitMQ runtime dependencies
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE redis_5.0.9-201021
|
IMAGE redis_5.0.9-210106
|
||||||
FROM alpine3.12_3.12.1-201021
|
FROM alpine3.12_3.12.3-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Create OS user (which will be picked up later by apk add)
|
# Create OS user (which will be picked up later by apk add)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE solr6_6.5.1-201021
|
IMAGE solr6_6.5.1-210106
|
||||||
FROM alpine3.12-java8_8.252.09-201021
|
FROM alpine3.12-java8_8.252.09-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Install runtime dependencies
|
# Install runtime dependencies
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE alpine3.11-python2.7_2.7.18-201021
|
IMAGE alpine3.11-python2.7_2.7.18-210106
|
||||||
FROM alpine3.11_3.11.6-201021
|
FROM alpine3.11_3.11.7-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
apk --no-cache add python2
|
apk --no-cache add python2
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
IMAGE alpine3.11_3.11.6-201021
|
IMAGE alpine3.11_3.11.7-210106
|
||||||
|
|
||||||
COPY https://github.com/alpinelinux/docker-alpine/raw/v3.11/x86_64/alpine-minirootfs-3.11.6-x86_64.tar.gz
|
COPY https://github.com/alpinelinux/docker-alpine/raw/v3.11/x86_64/alpine-minirootfs-3.11.7-x86_64.tar.gz
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Update packages
|
# Update packages
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE alpine3.12-java8_8.252.09-201021
|
IMAGE alpine3.12-java8_8.252.09-210106
|
||||||
FROM alpine3.12_3.12.1-201021
|
FROM alpine3.12_3.12.3-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
apk --no-cache add openjdk8-jre-base
|
apk --no-cache add openjdk8-jre-base
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE alpine3.12-php7.3_7.3.23-201021
|
IMAGE alpine3.12-php7.3_7.3.25-210106
|
||||||
FROM alpine3.12_3.12.1-201021
|
FROM alpine3.12_3.12.3-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
apk --no-cache add nginx php7 php7-ctype php7-fpm php7-gd php7-json php7-mbstring php7-mcrypt php7-opcache php7-session
|
apk --no-cache add nginx php7 php7-ctype php7-fpm php7-gd php7-json php7-mbstring php7-mcrypt php7-opcache php7-session
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE alpine3.12-python3.8_3.8.5-201021
|
IMAGE alpine3.12-python3.8_3.8.5-210106
|
||||||
FROM alpine3.12_3.12.1-201021
|
FROM alpine3.12_3.12.3-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
apk --no-cache add python3 py3-pip py3-wheel
|
apk --no-cache add python3 py3-pip py3-wheel
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE alpine3.12-ruby2.4_2.4.10-201021
|
IMAGE alpine3.12-ruby2.4_2.4.10-210106
|
||||||
FROM alpine3.12_3.12.1-201021
|
FROM alpine3.12_3.12.3-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Install Ruby runtime dependencies
|
# Install Ruby runtime dependencies
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
IMAGE alpine3.12-ruby2.7_2.7.2-201118
|
IMAGE alpine3.12-ruby2.7_2.7.2-210106
|
||||||
FROM alpine3.12_3.12.1-201021
|
FROM alpine3.12_3.12.3-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Install Ruby runtime dependencies
|
# Install Ruby runtime dependencies
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
IMAGE alpine3.12-tomcat7_7.0.106-201021
|
IMAGE alpine3.12-tomcat7_7.0.107-210106
|
||||||
FROM alpine3.12-java8_8.252.09-201021
|
FROM alpine3.12-java8_8.252.09-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Install Tomcat 7
|
# Install Tomcat 7
|
||||||
wget https://archive.apache.org/dist/tomcat/tomcat-7/v7.0.106/bin/apache-tomcat-7.0.106.tar.gz -O - | tar xzf - -C /srv
|
wget https://archive.apache.org/dist/tomcat/tomcat-7/v7.0.107/bin/apache-tomcat-7.0.107.tar.gz -O - | tar xzf - -C /srv
|
||||||
mv /srv/apache-tomcat-* /srv/tomcat
|
mv /srv/apache-tomcat-* /srv/tomcat
|
||||||
|
|
||||||
# Make catalina.sh available globally
|
# Make catalina.sh available globally
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
IMAGE alpine3.12-tomcat8.5_8.5.59-201021
|
IMAGE alpine3.12-tomcat8.5_8.5.61-210106
|
||||||
FROM alpine3.12-java8_8.252.09-201021
|
FROM alpine3.12-java8_8.252.09-210106
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Install Tomcat 8.5
|
# Install Tomcat 8.5
|
||||||
wget https://archive.apache.org/dist/tomcat/tomcat-8/v8.5.59/bin/apache-tomcat-8.5.59.tar.gz -O - | tar xzf - -C /srv
|
wget https://archive.apache.org/dist/tomcat/tomcat-8/v8.5.61/bin/apache-tomcat-8.5.61.tar.gz -O - | tar xzf - -C /srv
|
||||||
mv /srv/apache-tomcat-* /srv/tomcat
|
mv /srv/apache-tomcat-* /srv/tomcat
|
||||||
|
|
||||||
# Make catalina.sh available globally
|
# Make catalina.sh available globally
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
IMAGE alpine3.12_3.12.1-201021
|
IMAGE alpine3.12_3.12.3-210106
|
||||||
|
|
||||||
COPY https://github.com/alpinelinux/docker-alpine/raw/v3.12/x86_64/alpine-minirootfs-3.12.1-x86_64.tar.gz
|
COPY https://github.com/alpinelinux/docker-alpine/raw/v3.12/x86_64/alpine-minirootfs-3.12.3-x86_64.tar.gz
|
||||||
|
|
||||||
RUN EOF
|
RUN EOF
|
||||||
# Update packages
|
# Update packages
|
||||||
|
Loading…
Reference in New Issue
Block a user