Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: In 8586246881e8ff226a252abcee7447c2ad3905d0 it was changed and we don't have to replace "some-host" to "localhost" anymore

...


docker run --name postgres_tmp \
    -e POSTGRES_USER=postgres \
    -e POSTGRES_PASSWORD=mysecretpassword \
    --network=host \
    -d postgres \
    -c 'max_prepared_transactions=100' \
    -c 'port=5432'
The next thing is to change db's host in config file, you can do its with:
sed -i 's/some-postgres/localhost/g' example/config.docker

Then you can just run irohad  command.

...