Bump CTS date, add comment about python2 and geos

This commit is contained in:
Disassembler 2020-10-22 20:57:50 +02:00
parent 99099e03bb
commit 4ba0069a8a
Signed by: Disassembler
GPG Key ID: 524BD33A0EE29499
3 changed files with 7 additions and 6 deletions

View File

@ -1,5 +1,5 @@
{ {
"version": "0.8.0-200621", "version": "0.8.0-201021",
"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-200621", "image": "cts_0.8.0-201021",
"depends": [ "depends": [
"cts-postgres" "cts-postgres"
], ],
@ -17,7 +17,7 @@
} }
}, },
"cts-postgres": { "cts-postgres": {
"image": "postgis_3.0.0-200621", "image": "postgis_3.0.1-201021",
"mounts": { "mounts": {
"cts/postgres_data": "var/lib/postgresql" "cts/postgres_data": "var/lib/postgresql"
} }

View File

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

View File

@ -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-200621" CTS_LAYER="${LAYERS_DIR}/cts_0.8.0-201021"
# 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}