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