Don't run postgres as root
continuous-integration/drone/pr Build was killed Details

This commit is contained in:
kolaente 2021-08-11 23:47:34 +02:00
parent 3b92e72c69
commit 7d01ba5310
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ services:
- name: tmp-postgres-unit
path: /var/lib/postgresql/data
commands:
- postgres -c fsync=off -x full_page_writes=off # turns of wal
- docker-entrypoint.sh -c fsync=off -x full_page_writes=off # turns of wal
- name: test-postgres-integration
image: postgres:13
environment:
@ -71,7 +71,7 @@ services:
- name: tmp-postgres-integration
path: /var/lib/postgresql/data
commands:
- postgres -c fsync=off -x full_page_writes=off # turns of wal
- docker-entrypoint.sh -c fsync=off -x full_page_writes=off # turns of wal
- name: test-postgres-migration
image: postgres:13
environment:
@ -81,7 +81,7 @@ services:
- name: tmp-postgres-migration
path: /var/lib/postgresql/data
commands:
- postgres -c fsync=off -x full_page_writes=off # turns of wal
- docker-entrypoint.sh -c fsync=off -x full_page_writes=off # turns of wal
trigger:
branch: