mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-05-28 14:19:38 +00:00
19 lines
332 B
YAML
19 lines
332 B
YAML
services:
|
|
app:
|
|
image: spring-app:latest
|
|
ports:
|
|
- "8080:8080"
|
|
|
|
postgres:
|
|
image: postgres:17.0
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
POSTGRES_PASSWORD: petclinic
|
|
POSTGRES_USER: petclinic
|
|
POSTGRES_DB: petclinic
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
pgdata:
|