Changes between Version 28 and Version 29 of DevWikiDockerTesting


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

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiDockerTesting

    v28 v29  
    136136
    137137#TODO fix this, container starts up using postgres, and so these fail if mounting an external source folder
     138# using sudo makes paths not work
    138139/usr/local/pgsql/bin/pg_ctl -c -l /tmp/logfile -o '-F' start
    139 ./autogen.sh
    140 ./configure CFLAGS="${CFLAGS_COV}" LDFLAGS="${LDFLAGS_COV}" --enable-debug
    141 make -j 4
    142 make check
    143 make install
     140sudo ./autogen.sh
     141sudo ldconfig /usr/local/pgsql/lib
     142sudo ./configure CFLAGS="${CFLAGS_COV}" LDFLAGS="${LDFLAGS_COV}" --enable-debug
     143sudo make -j 4
     144sudo make check
     145sudo make install
    144146
    145147#any changes you make to your local folder projects/postgis, will show in the container /projects/postgis
     
    148150
    149151# To stop it do
    150 docker stop postgis-dev
     152docker stop postgis-build-env
    151153
    152154# if you need to remove the container to get a new version do
    153155
    154 docker rm postgis-dev
     156docker rm postgis-build-env
    155157
    156158}}}