Skip to content

Commit bf532d2

Browse files
committed
fix docker images versions
1 parent 08aec71 commit bf532d2

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

docker-compose-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ services:
5252

5353
# Nginx is serving django static and media files and proxies to django and geonode
5454
geonode:
55-
image: geonode/nginx:1.25.3-latest
55+
image: geonode/nginx:1.25.3-v2
5656
container_name: nginx4${COMPOSE_PROJECT_NAME}
5757
env_file:
5858
- .env_test
@@ -82,7 +82,7 @@ services:
8282

8383
# Gets and installs letsencrypt certificates
8484
letsencrypt:
85-
image: geonode/letsencrypt:2.6.0-latest
85+
image: geonode/letsencrypt:2.6.0-v1
8686
container_name: letsencrypt4${COMPOSE_PROJECT_NAME}
8787
env_file:
8888
- .env_test
@@ -92,7 +92,7 @@ services:
9292

9393
# Geoserver backend
9494
geoserver:
95-
image: geonode/geoserver:2.24.3-latest
95+
image: geonode/geoserver:2.24.4-v1
9696
container_name: geoserver4${COMPOSE_PROJECT_NAME}
9797
healthcheck:
9898
test: "curl -m 10 --fail --silent --write-out 'HTTP CODE : %{http_code}\n' --output /dev/null http://geoserver:8080/geoserver/ows"
@@ -118,7 +118,7 @@ services:
118118
condition: service_healthy
119119

120120
data-dir-conf:
121-
image: geonode/geoserver_data:2.24.3-latest
121+
image: geonode/geoserver_data:2.24.4-v1
122122
container_name: gsconf4${COMPOSE_PROJECT_NAME}
123123
entrypoint: sleep infinity
124124
volumes:
@@ -130,7 +130,7 @@ services:
130130
# PostGIS database.
131131
db:
132132
# use geonode official postgis 15 image
133-
image: geonode/postgis:15.3-latest
133+
image: geonode/postgis:15.3-v1
134134
command: postgres -c "max_connections=${POSTGRESQL_MAX_CONNECTIONS}"
135135
container_name: db4${COMPOSE_PROJECT_NAME}
136136
env_file:

docker-compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ services:
6464

6565
# Nginx is serving django static and media files and proxies to django and geonode
6666
geonode:
67-
image: geonode/nginx:1.25.3-latest
67+
image: geonode/nginx:1.25.3-v2
6868
container_name: nginx4${COMPOSE_PROJECT_NAME}
6969
env_file:
7070
- .env
@@ -81,7 +81,7 @@ services:
8181

8282
# Gets and installs letsencrypt certificates
8383
letsencrypt:
84-
image: geonode/letsencrypt:2.6.0-latest
84+
image: geonode/letsencrypt:2.6.0-v1
8585
container_name: letsencrypt4${COMPOSE_PROJECT_NAME}
8686
env_file:
8787
- .env
@@ -91,7 +91,7 @@ services:
9191

9292
# Geoserver backend
9393
geoserver:
94-
image: geonode/geoserver:2.24.3-latest
94+
image: geonode/geoserver:2.24.4-v1
9595
container_name: geoserver4${COMPOSE_PROJECT_NAME}
9696
healthcheck:
9797
test: "curl -m 10 --fail --silent --write-out 'HTTP CODE : %{http_code}\n' --output /dev/null http://geoserver:8080/geoserver/ows"
@@ -117,7 +117,7 @@ services:
117117
condition: service_healthy
118118

119119
data-dir-conf:
120-
image: geonode/geoserver_data:2.24.3-latest
120+
image: geonode/geoserver_data:2.24.4-v1
121121
container_name: gsconf4${COMPOSE_PROJECT_NAME}
122122
entrypoint: sleep infinity
123123
volumes:
@@ -129,7 +129,7 @@ services:
129129
# PostGIS database.
130130
db:
131131
# use geonode official postgis 15 image
132-
image: geonode/postgis:15.3-latest
132+
image: geonode/postgis:15.3-v1
133133
command: postgres -c "max_connections=${POSTGRESQL_MAX_CONNECTIONS}"
134134
container_name: db4${COMPOSE_PROJECT_NAME}
135135
env_file:

0 commit comments

Comments
 (0)