mirror of
https://github.com/sprockets/sprockets-postgres.git
synced 2024-11-11 03:00:20 +00:00
17 lines
328 B
YAML
17 lines
328 B
YAML
version: '3.3'
|
|
services:
|
|
postgres:
|
|
image: postgres:12-alpine
|
|
environment:
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
|
healthcheck:
|
|
test: pg_isready
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
ports:
|
|
- 5432
|
|
volumes:
|
|
- type: bind
|
|
source: ./fixtures
|
|
target: /fixtures
|