Changes between Version 14 and Version 15 of DevWikiDockerTesting
- Timestamp:
- 01/30/23 07:34:36 (21 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevWikiDockerTesting
v14 v15 1 1 The PostGIS project uses docker for a number of regression tests and production use. We have two different docker setups. 2 2 3 On OSGeo infrastructure we have docker.osgeo.org which docker images are pushed to via postgis-docker.osgeo.org. These are currently only used by dronie.osgeo.org drone agents.3 On OSGeo infrastructure we have docker.osgeo.org which docker images are pushed to via postgis-docker.osgeo.org. These are currently only used by dronie.osgeo.org and woodie.osgeo.org drone agents. They ware useful for general development as well, because they include multiple versions of PostgreSQL and also include pre-installed postgis versions for doing upgrade tests. 4 4 5 5 **Docker OSGeo** … … 12 12 13 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 #confirm you can pull from the read-only repo - it should recognize you already have it and just add another tag 20 docker pull docker.osgeo.org/postgis/build-test:trisquel 21 22 #To really test, you can (note you can add a --force at end of first to auto delete all dependent tags) 23 docker rmi docker.osgeo.org/postgis/build-test:trisquel 24 docker rmi postgis-docker.osgeo.org/postgis/build-test:trisquel 25 docker rmi docker.kbt.io/postgis/build-test:trisquel 14 #To develop and test using this image, do the following 26 15 docker pull docker.osgeo.org/postgis/build-test:trisquel 27 16 }}}