mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-12-27 19:07:28 +00:00
17 lines
393 B
YAML
17 lines
393 B
YAML
services:
|
|
postgres_prod:
|
|
image: postgres:18.1
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
- POSTGRES_PASSWORD=petclinic
|
|
- POSTGRES_USER=petclinic
|
|
- POSTGRES_DB=petclinic
|
|
postgres_develop:
|
|
image: postgres:18.1
|
|
ports:
|
|
- "5433:5432"
|
|
environment:
|
|
- POSTGRES_PASSWORD=petclinic
|
|
- POSTGRES_USER=petclinic
|
|
- POSTGRES_DB=petclinic_dev
|