2019-05-07 19:23:35 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
2017-07-31 20:07:30 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-09-08 11:18:12 +00:00
|
|
|
docker run \
|
|
|
|
-it \
|
|
|
|
--rm \
|
2019-01-28 09:43:32 +00:00
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
2020-04-16 22:52:09 +00:00
|
|
|
--cap-drop=ALL \
|
2019-01-12 15:53:00 +00:00
|
|
|
--env-file={{ matrix_postgres_base_path }}/env-postgres-psql \
|
2018-08-08 05:23:36 +00:00
|
|
|
--network {{ matrix_docker_network }} \
|
2018-11-01 06:46:47 +00:00
|
|
|
{{ matrix_postgres_docker_image_to_use }} \
|
2018-08-08 06:17:18 +00:00
|
|
|
psql -h {{ matrix_postgres_connection_hostname }}
|