Files
farmOS-dev/web/profiles/farm/docker/docker-compose.testing.pgsql.yml
2024-12-10 15:08:16 +01:00

17 lines
305 B
YAML

# Inherits from docker-compose.testing.common.yml
services:
db:
image: postgres:13
volumes:
- './db:/var/lib/postgresql/data'
ports:
- '5432:5432'
environment:
POSTGRES_USER: farm
POSTGRES_PASSWORD: farm
POSTGRES_DB: farm
www:
depends_on:
- db