Changes between Version 14 and Version 15 of DevWikiDockerTesting


Ignore:
Timestamp:
Jan 30, 2023, 7:34:36 AM (18 months ago)
Author:
robe
Comment:

Get rid of unnecessary history

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiDockerTesting

    v14 v15  
    11The PostGIS project uses docker for a number of regression tests and production use.  We have two different docker setups.
    22
    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.
     3On 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.
    44
    55**Docker OSGeo**
     
    1212
    1313{{{
    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
    2615docker pull docker.osgeo.org/postgis/build-test:trisquel
    2716}}}