Bump Alpine 3.11, 3.12, services and apps to current versions

This commit is contained in:
Disassembler 2021-01-06 19:28:37 +01:00
parent ef116c12ef
commit 917c15420c
Signed by: Disassembler
GPG Key ID: 524BD33A0EE29499
64 changed files with 151 additions and 151 deletions

View File

@ -1,5 +1,5 @@
{
"version": "2.9.0-201021",
"version": "2.9.1-210106",
"meta": {
"title": "CKAN",
"desc-cs": "Datový sklad",
@ -8,7 +8,7 @@
},
"containers": {
"ckan": {
"image": "ckan_2.9.0-201021",
"image": "ckan_2.9.1-210106",
"depends": [
"ckan-datapusher",
"ckan-redis",
@ -21,27 +21,27 @@
}
},
"ckan-datapusher": {
"image": "ckan-datapusher_0.0.16-201021",
"image": "ckan-datapusher_0.0.16-210106",
"mounts": {
"ckan/datapusher_conf": "etc/ckan-datapusher",
"ckan/datapusher_data": "srv/ckan-datapusher/data"
}
},
"ckan-redis": {
"image": "redis_5.0.9-201021",
"image": "redis_5.0.9-210106",
"mounts": {
"ckan/redis_conf/redis.conf": "etc/redis.conf:file",
"ckan/redis_data": "var/lib/redis"
}
},
"ckan-solr": {
"image": "solr6_6.5.1-201021",
"image": "solr6_6.5.1-210106",
"mounts": {
"ckan/solr_data": "var/lib/solr"
}
},
"ckan-postgres": {
"image": "postgis_3.0.1-201021",
"image": "postgis_3.0.1-210106",
"mounts": {
"ckan/postgres_data": "var/lib/postgresql"
}

View File

@ -1,5 +1,5 @@
IMAGE ckan-datapusher_0.0.16-201021
FROM alpine3.12-python3.8_3.8.5-201021
IMAGE ckan-datapusher_0.0.16-210106
FROM alpine3.12-python3.8_3.8.5-210106
RUN EOF
# Install runtime dependencies

View File

@ -1,5 +1,5 @@
IMAGE ckan_2.9.0-201021
FROM alpine3.12-python3.8_3.8.5-201021
IMAGE ckan_2.9.1-210106
FROM alpine3.12-python3.8_3.8.5-210106
RUN EOF
# Install runtime dependencies
@ -11,7 +11,7 @@ RUN EOF
# Install CKAN
mkdir -p /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+
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

View File

@ -6,7 +6,7 @@ POSTGRES_DATA="${VOLUMES_DIR}/ckan/postgres_data"
REDIS_CONF="${VOLUMES_DIR}/ckan/redis_conf"
REDIS_DATA="${VOLUMES_DIR}/ckan/redis_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_DATA="${VOLUMES_DIR}/ckan/datapusher_data"
CKAN_CONF="${VOLUMES_DIR}/ckan/ckan_conf"

View File

@ -1,5 +1,5 @@
{
"version": "2.2.0-201021",
"version": "2.2.0-210106",
"meta": {
"title": "Crisis Cleanup",
"desc-cs": "Mapování následků katastrof",
@ -8,7 +8,7 @@
},
"containers": {
"crisiscleanup": {
"image": "crisiscleanup_2.2.0-201021",
"image": "crisiscleanup_2.2.0-210106",
"depends": [
"crisiscleanup-postgres"
],
@ -17,7 +17,7 @@
}
},
"crisiscleanup-postgres": {
"image": "postgres_12.4.0-201021",
"image": "postgres_12.5.0-210106",
"mounts": {
"crisiscleanup/postgres_data": "var/lib/postgresql"
}

View File

@ -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
# yarn dependencies installation fails on nodejs>8

View File

@ -4,7 +4,7 @@ set -ev
# Volumes
POSTGRES_DATA="${VOLUMES_DIR}/crisiscleanup/postgres_data"
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
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}

View File

@ -1,5 +1,5 @@
{
"version": "0.8.0-201021",
"version": "0.8.0-210106",
"meta": {
"title": "CTS",
"desc-cs": "Sledovací systém komodit",
@ -8,7 +8,7 @@
},
"containers": {
"cts": {
"image": "cts_0.8.0-201021",
"image": "cts_0.8.0-210106",
"depends": [
"cts-postgres"
],
@ -17,7 +17,7 @@
}
},
"cts-postgres": {
"image": "postgis_3.0.1-201021",
"image": "postgis_3.0.1-210106",
"mounts": {
"cts/postgres_data": "var/lib/postgresql"
}

View File

@ -1,5 +1,5 @@
IMAGE cts_0.8.0-201021
FROM alpine3.11-python2.7_2.7.18-201021
IMAGE cts_0.8.0-210106
FROM alpine3.11-python2.7_2.7.18-210106
# Alpine 3.11 is the latest version to have both python2 and geos
RUN EOF

View File

@ -4,7 +4,7 @@ set -ev
# Volumes
POSTGRES_DATA="${VOLUMES_DIR}/cts/postgres_data"
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
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}

View File

@ -1,5 +1,5 @@
{
"version": "0.23.1-201118",
"version": "0.23.1-210106",
"meta": {
"title": "Decidim",
"desc-cs": "Platforma pro účast občanů",
@ -8,7 +8,7 @@
},
"containers": {
"decidim": {
"image": "decidim_0.23.1-201118",
"image": "decidim_0.23.1-210106",
"depends": [
"decidim-postgres"
],
@ -20,7 +20,7 @@
}
},
"decidim-postgres": {
"image": "postgres_12.4.0-201021",
"image": "postgres_12.5.0-210106",
"mounts": {
"decidim/postgres_data": "var/lib/postgresql"
}

View File

@ -1,5 +1,5 @@
IMAGE decidim-nginx_1.18.0-201118
FROM alpine3.12-ruby2.7_2.7.2-201118
IMAGE decidim-nginx_1.18.0-210106
FROM alpine3.12-ruby2.7_2.7.2-210106
RUN EOF
# Install runtime dependencies

View File

@ -1,5 +1,5 @@
IMAGE decidim_0.23.1-201118
FROM decidim-nginx_1.18.0-201118
IMAGE decidim_0.23.1-210106
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/basic-config.md

View File

@ -5,7 +5,7 @@ set -ev
POSTGRES_DATA="${VOLUMES_DIR}/decidim/postgres_data"
DECIDIM_CONF="${VOLUMES_DIR}/decidim/decidim_conf"
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
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}

View File

@ -1,5 +1,5 @@
{
"version": "2.35.0-201108",
"version": "2.35.1-210106",
"meta": {
"title": "DHIS2",
"desc-cs": "Sběr, správa, analýza, vizualizace a sdílení zdravotních dat",
@ -8,7 +8,7 @@
},
"containers": {
"dhis2": {
"image": "dhis2_2.35.0-201108",
"image": "dhis2_2.35.1-210106",
"depends": [
"dhis2-postgres"
],
@ -19,7 +19,7 @@
}
},
"dhis2-postgres": {
"image": "postgis_3.0.1-201021",
"image": "postgis_3.0.1-210106",
"mounts": {
"dhis2/postgres_data": "var/lib/postgresql"
}

View File

@ -1,11 +1,11 @@
IMAGE dhis2_2.35.0-201108
FROM alpine3.12-tomcat8.5_8.5.59-201021
IMAGE dhis2_2.35.1-210106
FROM alpine3.12-tomcat8.5_8.5.61-210106
# https://docs.dhis2.org/master/en/implementer/html/installation.html
RUN EOF
# 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
unzip /tmp/dhis2.war -d /srv/tomcat/webapps/ROOT

View File

@ -1,5 +1,5 @@
{
"version": "3.6.5-201021",
"version": "3.6.5-210106",
"meta": {
"title": "GNU Health",
"desc-cs": "Lékařské záznamy pacientů",
@ -8,7 +8,7 @@
},
"containers": {
"gnuhealth": {
"image": "gnuhealth_3.6.5-201021",
"image": "gnuhealth_3.6.5-210106",
"depends": [
"gnuhealth-postgres"
],
@ -17,7 +17,7 @@
}
},
"gnuhealth-postgres": {
"image": "postgres_12.4.0-201021",
"image": "postgres_12.5.0-210106",
"mounts": {
"gnuhealth/postgres_data": "var/lib/postgresql"
}

View File

@ -1,5 +1,5 @@
IMAGE gnuhealth_3.6.5-201021
FROM alpine3.12-python3.8_3.8.5-201021
IMAGE gnuhealth_3.6.5-210106
FROM alpine3.12-python3.8_3.8.5-210106
RUN EOF
# Install runtime dependencies

View File

@ -1,5 +1,5 @@
{
"version": "1.2.16-201021",
"version": "1.2.18-210106",
"meta": {
"title": "Kanboard",
"desc-cs": "Kanban řízení projektů",
@ -8,7 +8,7 @@
},
"containers": {
"kanboard": {
"image": "kanboard_1.2.16-201021",
"image": "kanboard_1.2.18-210106",
"depends": [
"kanboard-postgres"
],
@ -18,7 +18,7 @@
}
},
"kanboard-postgres": {
"image": "postgres_12.4.0-201021",
"image": "postgres_12.5.0-210106",
"mounts": {
"kanboard/postgres_data": "var/lib/postgresql"
}

View File

@ -1,5 +1,5 @@
IMAGE kanboard_1.2.16-201021
FROM alpine3.12-php7.3_7.3.23-201021
IMAGE kanboard_1.2.18-210106
FROM alpine3.12-php7.3_7.3.25-210106
RUN EOF
# Install runtime dependencies
@ -9,7 +9,7 @@ RUN EOF
apk --no-cache add --virtual .deps git
# 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
mv /srv/kanboard-* /srv/kanboard

View File

@ -1,5 +1,5 @@
{
"version": "18.03.01-201021",
"version": "18.03.01-210106",
"meta": {
"title": "Mifos X",
"desc-cs": "Mikrofinancování rozvojových projektů",
@ -8,7 +8,7 @@
},
"containers": {
"mifosx": {
"image": "mifosx_18.03.01-201021",
"image": "mifosx_18.03.01-210106",
"depends": [
"mifosx-mariadb"
],
@ -18,7 +18,7 @@
}
},
"mifosx-mariadb": {
"image": "mariadb_10.4.15-201021",
"image": "mariadb_10.4.15-210106",
"mounts": {
"mifosx/mariadb_conf/my.cnf": "etc/my.cnf:file",
"mifosx/mariadb_data": "var/lib/mysql"

View File

@ -1,5 +1,5 @@
IMAGE mifosx_18.03.01-201021
FROM alpine3.12-tomcat8.5_8.5.59-201021
IMAGE mifosx_18.03.01-210106
FROM alpine3.12-tomcat8.5_8.5.61-210106
RUN EOF
# Install build dependencies

View File

@ -1,5 +1,5 @@
{
"version": "1.3.0-201021",
"version": "1.3.0-210106",
"meta": {
"title": "Motech",
"desc-cs": "Automatizace komunikace",
@ -8,7 +8,7 @@
},
"containers": {
"motech": {
"image": "motech_1.3.0-201021",
"image": "motech_1.3.0-210106",
"depends": [
"motech-activemq",
"motech-postgres"
@ -18,14 +18,14 @@
}
},
"motech-activemq": {
"image": "activemq_5.16.0-201021",
"image": "activemq_5.16.0-210106",
"mounts": {
"motech/activemq_conf/activemq.xml": "srv/activemq/conf/activemq.xml:file",
"motech/activemq_data": "srv/activemq/data"
}
},
"motech-postgres": {
"image": "postgres_12.4.0-201021",
"image": "postgres_12.5.0-210106",
"mounts": {
"motech/postgres_data": "var/lib/postgresql"
}

View File

@ -1,5 +1,5 @@
IMAGE motech_1.3.0-201021
FROM alpine3.12-tomcat7_7.0.106-201021
IMAGE motech_1.3.0-210106
FROM alpine3.12-tomcat7_7.0.107-210106
RUN EOF
# Download Motech

View File

@ -1,5 +1,5 @@
{
"version": "14.0.0-201021",
"version": "14.0.0-210106",
"meta": {
"title": "Odoo",
"desc-cs": "Sada aplikací pro správu organizace",
@ -8,7 +8,7 @@
},
"containers": {
"odoo": {
"image": "odoo_14.0.0-201021",
"image": "odoo_14.0.0-210106",
"depends": [
"odoo-postgres"
],
@ -18,7 +18,7 @@
}
},
"odoo-postgres": {
"image": "postgres_12.4.0-201021",
"image": "postgres_12.5.0-210106",
"mounts": {
"odoo/postgres_data": "var/lib/postgresql"
}

View File

@ -1,5 +1,5 @@
IMAGE odoo_14.0.0-201021
FROM alpine3.12-python3.8_3.8.5-201021
IMAGE odoo_14.0.0-210106
FROM alpine3.12-python3.8_3.8.5-210106
RUN EOF
# Install runtime dependencies

View File

@ -1,5 +1,5 @@
{
"version": "2.0.5-201021",
"version": "2.0.5-210106",
"meta": {
"title": "OpenDataKit",
"desc-cs": "Sběr formulářových dat",
@ -8,7 +8,7 @@
},
"containers": {
"opendatakit": {
"image": "opendatakit_2.0.5-201021",
"image": "opendatakit_2.0.5-210106",
"depends": [
"opendatakit-postgres"
],
@ -19,7 +19,7 @@
}
},
"opendatakit-build": {
"image": "opendatakit-build_0.3.5-201021",
"image": "opendatakit-build_0.3.5-210106",
"depends": [
"opendatakit-postgres"
],
@ -29,7 +29,7 @@
}
},
"opendatakit-postgres": {
"image": "postgres_12.4.0-201021",
"image": "postgres_12.5.0-210106",
"mounts": {
"opendatakit/postgres_data": "var/lib/postgresql"
}

View File

@ -1,5 +1,5 @@
IMAGE opendatakit-build_0.3.5-201021
FROM alpine3.12-ruby2.4_2.4.10-201021
IMAGE opendatakit-build_0.3.5-210106
FROM alpine3.12-ruby2.4_2.4.10-210106
RUN EOF
# Install runtime dependencies

View File

@ -1,5 +1,5 @@
IMAGE opendatakit_2.0.5-201021
FROM alpine3.12-tomcat8.5_8.5.59-201021
IMAGE opendatakit_2.0.5-210106
FROM alpine3.12-tomcat8.5_8.5.61-210106
RUN EOF
# Download OpenDataKit

View File

@ -1,5 +1,5 @@
{
"version": "0.0.1-201021",
"version": "0.0.1-210106",
"meta": {
"title": "Pan.do/ra",
"desc-cs": "Archiv medií",
@ -8,7 +8,7 @@
},
"containers": {
"pandora": {
"image": "pandora_0.0.1-201021",
"image": "pandora_0.0.1-210106",
"depends": [
"pandora-postgres",
"pandora-rabbitmq"
@ -19,13 +19,13 @@
}
},
"pandora-postgres": {
"image": "postgres_12.4.0-201021",
"image": "postgres_12.5.0-210106",
"mounts": {
"pandora/postgres_data": "var/lib/postgresql"
}
},
"pandora-rabbitmq": {
"image": "rabbitmq_3.8.9-201021",
"image": "rabbitmq_3.8.9-210106",
"mounts": {
"pandora/rabbitmq_data": "var/lib/rabbitmq/mnesia"
}

View File

@ -1,5 +1,5 @@
IMAGE pandora_0.0.1-201021
FROM alpine3.12-python3.8_3.8.5-201021
IMAGE pandora_0.0.1-210106
FROM alpine3.12-python3.8_3.8.5-210106
RUN EOF
# Install runtime dependencies

View File

@ -1,5 +1,5 @@
{
"version": "1.0.3-201021",
"version": "1.0.3-210106",
"meta": {
"title": "Sahana Eden - SAFIRE",
"desc-cs": "Řízení humanítární činnosti - Řešení nouzových událostí",
@ -8,7 +8,7 @@
},
"containers": {
"safire": {
"image": "sahana_1.0.3-201021",
"image": "sahana_1.0.3-210106",
"depends": [
"safire-postgres"
],
@ -23,7 +23,7 @@
}
},
"safire-postgres": {
"image": "postgis_3.0.1-201021",
"image": "postgis_3.0.1-210106",
"mounts": {
"safire/postgres_data": "var/lib/postgresql"
}

View File

@ -5,7 +5,7 @@ set -ev
POSTGRES_DATA="${VOLUMES_DIR}/safire/postgres_data"
SAHANA_DATA="${VOLUMES_DIR}/safire/sahana_data"
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
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}

View File

@ -1,5 +1,5 @@
{
"version": "1.0.3-201021",
"version": "1.0.3-210106",
"meta": {
"title": "Sahana Eden - Demo",
"desc-cs": "Řízení humanítární činnosti - Demo instance",
@ -8,7 +8,7 @@
},
"containers": {
"sahana-demo": {
"image": "sahana_1.0.3-201021",
"image": "sahana_1.0.3-210106",
"depends": [
"sahana-demo-postgres"
],
@ -22,7 +22,7 @@
}
},
"sahana-demo-postgres": {
"image": "postgis_3.0.1-201021",
"image": "postgis_3.0.1-210106",
"mounts": {
"sahana-demo/postgres_data": "var/lib/postgresql"
}

View File

@ -5,7 +5,7 @@ set -ev
POSTGRES_DATA="${VOLUMES_DIR}/sahana-demo/postgres_data"
SAHANA_DATA="${VOLUMES_DIR}/sahana-demo/sahana_data"
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
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}

View File

@ -1,5 +1,5 @@
{
"version": "1.0.3-201021",
"version": "1.0.3-210106",
"meta": {
"title": "Sahana Eden",
"desc-cs": "Řízení humanítární činnosti",
@ -8,7 +8,7 @@
},
"containers": {
"sahana": {
"image": "sahana_1.0.3-201021",
"image": "sahana_1.0.3-210106",
"depends": [
"sahana-postgres"
],
@ -22,7 +22,7 @@
}
},
"sahana-postgres": {
"image": "postgis_3.0.1-201021",
"image": "postgis_3.0.1-210106",
"mounts": {
"sahana/postgres_data": "var/lib/postgresql"
}

View File

@ -1,5 +1,5 @@
IMAGE sahana_1.0.3-201021
FROM alpine3.12-python3.8_3.8.5-201021
IMAGE sahana_1.0.3-210106
FROM alpine3.12-python3.8_3.8.5-210106
RUN EOF
# Install runtime dependencies

View File

@ -5,7 +5,7 @@ set -ev
POSTGRES_DATA="${VOLUMES_DIR}/sahana/postgres_data"
SAHANA_DATA="${VOLUMES_DIR}/sahana/sahana_data"
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
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}

View File

@ -1,5 +1,5 @@
{
"version": "1.0.3-201021",
"version": "1.0.3-210106",
"meta": {
"title": "Sahana Eden - SAMBRO",
"desc-cs": "Řízení humanítární činnosti - Centrum hlášení a výstrah",
@ -8,7 +8,7 @@
},
"containers": {
"sambro": {
"image": "sahana_1.0.3-201021",
"image": "sahana_1.0.3-210106",
"depends": [
"sambro-postgres"
],
@ -23,7 +23,7 @@
}
},
"sambro-postgres": {
"image": "postgis_3.0.1-201021",
"image": "postgis_3.0.1-210106",
"mounts": {
"sambro/postgres_data": "var/lib/postgresql"
}

View File

@ -5,7 +5,7 @@ set -ev
POSTGRES_DATA="${VOLUMES_DIR}/sambro/postgres_data"
SAHANA_DATA="${VOLUMES_DIR}/sambro/sahana_data"
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
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}

View File

@ -1,5 +1,5 @@
{
"version": "6.0.13-201021",
"version": "6.0.14-210106",
"meta": {
"title": "SeedDMS",
"desc-cs": "Archiv dokumentace",
@ -8,7 +8,7 @@
},
"containers": {
"seeddms": {
"image": "seeddms_6.0.13-201021",
"image": "seeddms_6.0.14-210106",
"depends": [
"seeddms-postgres"
],
@ -18,7 +18,7 @@
}
},
"seeddms-postgres": {
"image": "postgres_12.4.0-201021",
"image": "postgres_12.5.0-210106",
"mounts": {
"seeddms/postgres_data": "var/lib/postgresql"
}

View File

@ -1,5 +1,5 @@
IMAGE seeddms_6.0.13-201021
FROM alpine3.12-php7.3_7.3.23-201021
IMAGE seeddms_6.0.14-210106
FROM alpine3.12-php7.3_7.3.25-210106
RUN EOF
# Install runtime dependencies
@ -14,7 +14,7 @@ RUN EOF
apk --no-cache add wget
# 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
EOF

View File

@ -5,7 +5,7 @@ set -ev
POSTGRES_DATA="${VOLUMES_DIR}/seeddms/postgres_data"
SEEDDMS_DATA="${VOLUMES_DIR}/seeddms/seeddms_data"
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
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}

View File

@ -1,5 +1,5 @@
{
"version": "1.0.3-201021",
"version": "1.0.3-210106",
"meta": {
"title": "Sahana Eden - SHARE",
"desc-cs": "Řízení humanítární činnosti - Úleva a rehabilitace",
@ -8,7 +8,7 @@
},
"containers": {
"share": {
"image": "sahana_1.0.3-201021",
"image": "sahana_1.0.3-210106",
"depends": [
"share-postgres"
],
@ -23,7 +23,7 @@
}
},
"share-postgres": {
"image": "postgis_3.0.1-201021",
"image": "postgis_3.0.1-210106",
"mounts": {
"share/postgres_data": "var/lib/postgresql"
}

View File

@ -5,7 +5,7 @@ set -ev
POSTGRES_DATA="${VOLUMES_DIR}/share/postgres_data"
SAHANA_DATA="${VOLUMES_DIR}/share/sahana_data"
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
install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}

View File

@ -1,5 +1,5 @@
{
"version": "4.6.1-201021",
"version": "4.6.9-210106",
"meta": {
"title": "Ushahidi",
"desc-cs": "Skupinová reakce na události",
@ -8,7 +8,7 @@
},
"containers": {
"ushahidi": {
"image": "ushahidi_4.6.1-201021",
"image": "ushahidi_4.6.9-210106",
"depends": [
"ushahidi-redis",
"ushahidi-mariadb"
@ -20,14 +20,14 @@
}
},
"ushahidi-redis": {
"image": "redis_5.0.9-201021",
"image": "redis_5.0.9-210106",
"mounts": {
"ushahidi/redis_conf/redis.conf": "etc/redis.conf:file",
"ushahidi/redis_data": "var/lib/redis"
}
},
"ushahidi-mariadb": {
"image": "mariadb_10.4.15-201021",
"image": "mariadb_10.4.15-210106",
"mounts": {
"ushahidi/mariadb_conf/my.cnf": "etc/my.cnf:file",
"ushahidi/mariadb_data": "var/lib/mysql"

View File

@ -1,14 +1,14 @@
IMAGE ushahidi_4.6.1-201021
FROM alpine3.12-php7.3_7.3.23-201021
IMAGE ushahidi_4.6.9-210106
FROM alpine3.12-php7.3_7.3.25-210106
RUN EOF
# Install runtime dependencies
apk --no-cache add php7-curl php7-imap php7-mysqli php7-pecl-memcached php7-pecl-redis php7-pdo_mysql
# 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
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
# Create OS user

View File

@ -1,5 +1,5 @@
IMAGE activemq_5.16.0-201021
FROM alpine3.12-java8_8.252.09-201021
IMAGE activemq_5.16.0-210106
FROM alpine3.12-java8_8.252.09-210106
RUN EOF
# Download and install ActiveMQ

View File

@ -1,5 +1,5 @@
IMAGE mariadb_10.4.15-201021
FROM alpine3.12_3.12.1-201021
IMAGE mariadb_10.4.15-210106
FROM alpine3.12_3.12.3-210106
RUN EOF
# Create OS user (which will be picked up later by apk add)

View File

@ -1,5 +1,5 @@
IMAGE postgis_3.0.1-201021
FROM postgres_12.4.0-201021
IMAGE postgis_3.0.1-210106
FROM postgres_12.5.0-210106
USER root

View File

@ -1,5 +1,5 @@
IMAGE postgres_12.4.0-201021
FROM alpine3.12_3.12.1-201021
IMAGE postgres_12.5.0-210106
FROM alpine3.12_3.12.3-210106
RUN EOF
# Create OS user (which will be picked up later by apk add)

View File

@ -1,5 +1,5 @@
IMAGE rabbitmq_3.8.9-201021
FROM alpine3.12_3.12.1-201021
IMAGE rabbitmq_3.8.9-210106
FROM alpine3.12_3.12.3-210106
RUN EOF
# Install RabbitMQ runtime dependencies

View File

@ -1,5 +1,5 @@
IMAGE redis_5.0.9-201021
FROM alpine3.12_3.12.1-201021
IMAGE redis_5.0.9-210106
FROM alpine3.12_3.12.3-210106
RUN EOF
# Create OS user (which will be picked up later by apk add)

View File

@ -1,5 +1,5 @@
IMAGE solr6_6.5.1-201021
FROM alpine3.12-java8_8.252.09-201021
IMAGE solr6_6.5.1-210106
FROM alpine3.12-java8_8.252.09-210106
RUN EOF
# Install runtime dependencies

View File

@ -1,5 +1,5 @@
IMAGE alpine3.11-python2.7_2.7.18-201021
FROM alpine3.11_3.11.6-201021
IMAGE alpine3.11-python2.7_2.7.18-210106
FROM alpine3.11_3.11.7-210106
RUN EOF
apk --no-cache add python2

View File

@ -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
# Update packages

View File

@ -1,5 +1,5 @@
IMAGE alpine3.12-java8_8.252.09-201021
FROM alpine3.12_3.12.1-201021
IMAGE alpine3.12-java8_8.252.09-210106
FROM alpine3.12_3.12.3-210106
RUN EOF
apk --no-cache add openjdk8-jre-base

View File

@ -1,5 +1,5 @@
IMAGE alpine3.12-php7.3_7.3.23-201021
FROM alpine3.12_3.12.1-201021
IMAGE alpine3.12-php7.3_7.3.25-210106
FROM alpine3.12_3.12.3-210106
RUN EOF
apk --no-cache add nginx php7 php7-ctype php7-fpm php7-gd php7-json php7-mbstring php7-mcrypt php7-opcache php7-session

View File

@ -1,5 +1,5 @@
IMAGE alpine3.12-python3.8_3.8.5-201021
FROM alpine3.12_3.12.1-201021
IMAGE alpine3.12-python3.8_3.8.5-210106
FROM alpine3.12_3.12.3-210106
RUN EOF
apk --no-cache add python3 py3-pip py3-wheel

View File

@ -1,5 +1,5 @@
IMAGE alpine3.12-ruby2.4_2.4.10-201021
FROM alpine3.12_3.12.1-201021
IMAGE alpine3.12-ruby2.4_2.4.10-210106
FROM alpine3.12_3.12.3-210106
RUN EOF
# Install Ruby runtime dependencies

View File

@ -1,5 +1,5 @@
IMAGE alpine3.12-ruby2.7_2.7.2-201118
FROM alpine3.12_3.12.1-201021
IMAGE alpine3.12-ruby2.7_2.7.2-210106
FROM alpine3.12_3.12.3-210106
RUN EOF
# Install Ruby runtime dependencies

View File

@ -1,9 +1,9 @@
IMAGE alpine3.12-tomcat7_7.0.106-201021
FROM alpine3.12-java8_8.252.09-201021
IMAGE alpine3.12-tomcat7_7.0.107-210106
FROM alpine3.12-java8_8.252.09-210106
RUN EOF
# 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
# Make catalina.sh available globally

View File

@ -1,9 +1,9 @@
IMAGE alpine3.12-tomcat8.5_8.5.59-201021
FROM alpine3.12-java8_8.252.09-201021
IMAGE alpine3.12-tomcat8.5_8.5.61-210106
FROM alpine3.12-java8_8.252.09-210106
RUN EOF
# 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
# Make catalina.sh available globally

View File

@ -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
# Update packages