Merge branch 'dev' into nsfw

This commit is contained in:
Dessalines 2019-08-13 17:26:25 -07:00
commit 6e8da9cc9e
2 changed files with 10 additions and 2 deletions

View file

@ -2,12 +2,14 @@ version: '2.4'
services:
db:
image: postgres
image: postgres:12-alpine
restart: always
environment:
POSTGRES_USER: rrr
POSTGRES_PASSWORD: rrr
POSTGRES_DB: rrr
volumes:
- db:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U rrr"]
interval: 5s
@ -27,3 +29,5 @@ services:
depends_on:
db:
condition: service_healthy
volumes:
db:

View file

@ -2,12 +2,14 @@ version: '2.4'
services:
db:
image: postgres
image: postgres:12-alpine
restart: always
environment:
POSTGRES_USER: rrr
POSTGRES_PASSWORD: rrr
POSTGRES_DB: rrr
volumes:
- db:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U rrr"]
interval: 5s
@ -26,3 +28,5 @@ services:
depends_on:
db:
condition: service_healthy
volumes:
db: