Changes between Version 28 and Version 29 of DevWikiDockerTesting
- Timestamp:
- 01/30/23 19:36:59 (21 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevWikiDockerTesting
v28 v29 136 136 137 137 #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 138 139 /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 140 sudo ./autogen.sh 141 sudo ldconfig /usr/local/pgsql/lib 142 sudo ./configure CFLAGS="${CFLAGS_COV}" LDFLAGS="${LDFLAGS_COV}" --enable-debug 143 sudo make -j 4 144 sudo make check 145 sudo make install 144 146 145 147 #any changes you make to your local folder projects/postgis, will show in the container /projects/postgis … … 148 150 149 151 # To stop it do 150 docker stop postgis- dev152 docker stop postgis-build-env 151 153 152 154 # if you need to remove the container to get a new version do 153 155 154 docker rm postgis- dev156 docker rm postgis-build-env 155 157 156 158 }}}