| 5 | **Docker OSGeo** |
| 6 | |
| 7 | The docker osgeo infrastructure you can log in via your osgeo user id. More details of the images in use by it can be found at [https://git.osgeo.org/gitea/postgis/postgis-docker PostGIS-docker repo]. |
| 8 | |
| 9 | |
| 10 | Here is an example of how you can pull an image, retag and push to postgis-docker.osgeo.org |
| 11 | |
| 12 | |
| 13 | {{{ |
| 14 | # this is old repo we used to use |
| 15 | docker pull docker.kbt.io/postgis/build-test:trisquel |
| 16 | docker tag docker.kbt.io/postgis/build-test:trisquel postgis-docker.osgeo.org/postgis/build-test:trisquel |
| 17 | docker login postgis-docker.osgeo.org #put in your OSGeo LDAP user id /password |
| 18 | docker push postgis-docker.osgeo.org/postgis/build-test:trisquel |
| 19 | docker pull docker.osgeo.org/postgis/build-test:trisquel |
| 20 | }}} |
| 21 | |
| 22 | |