Changes between Version 33 and Version 34 of DevWikiDockerTesting


Ignore:
Timestamp:
Jan 30, 2023, 8:22:11 PM (15 months ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiDockerTesting

    v33 v34  
    106106# If you don't care about the data you can leave that out and all data will be lost when container shuts down.
    107107
     108# -p is to expose the postgresql port as 5432, if you want a different port for external say 7432, you can change that to
     109# -p 5432:7432
     110# if you don't need access outside of the container, you can leave it out
    108111docker run -d \
    109112  --name postgis-test \