diff --git a/lxc-apps/crisiscleanup/app b/lxc-apps/crisiscleanup/app index 5f79bb6..5472b80 100644 --- a/lxc-apps/crisiscleanup/app +++ b/lxc-apps/crisiscleanup/app @@ -1,5 +1,5 @@ { - "version": "2.2.0-200621", + "version": "2.2.0-201021", "meta": { "title": "Crisis Cleanup", "desc-cs": "Mapování následků katastrof", @@ -8,7 +8,7 @@ }, "containers": { "crisiscleanup": { - "image": "crisiscleanup_2.2.0-200621", + "image": "crisiscleanup_2.2.0-201021", "depends": [ "crisiscleanup-postgres" ], @@ -17,7 +17,7 @@ } }, "crisiscleanup-postgres": { - "image": "postgres_12.2.0-200621", + "image": "postgres_12.4.0-201021", "mounts": { "crisiscleanup/postgres_data": "var/lib/postgresql" } diff --git a/lxc-apps/crisiscleanup/image b/lxc-apps/crisiscleanup/image index 66f1eb7..29fd305 100644 --- a/lxc-apps/crisiscleanup/image +++ b/lxc-apps/crisiscleanup/image @@ -1,5 +1,5 @@ -IMAGE crisiscleanup_2.2.0-200621 -FROM alpine3.8-ruby2.4_2.4.9-200621 +IMAGE crisiscleanup_2.2.0-201021 +FROM alpine3.8-ruby2.4_2.4.10-201021 # yarn dependencies installation fails on nodejs>8 ENV RAILS_ENV production @@ -16,7 +16,7 @@ RUN EOF git -C /srv/crisiscleanup checkout e362761e67e835d46c36073de1f95803737d1d29 # Hackfix ruby dependency versions - sed -i 's/ruby "2\.4\.4"/ruby "2.4.9"/' /srv/crisiscleanup/Gemfile + sed -i 's/ruby "2\.4\.4"/ruby "2.4.10"/' /srv/crisiscleanup/Gemfile gem install bundler:1.16.6 # Install Ruby and NodeJS dependencies diff --git a/lxc-apps/crisiscleanup/install.sh b/lxc-apps/crisiscleanup/install.sh index 53e4cfe..702bb32 100755 --- a/lxc-apps/crisiscleanup/install.sh +++ b/lxc-apps/crisiscleanup/install.sh @@ -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-200621" +CC_LAYER="${LAYERS_DIR}/crisiscleanup_2.2.0-201021" # Create Postgres instance install -o 105432 -g 105432 -m 700 -d ${POSTGRES_DATA}