Files
petclinic/docker-compose.yml
Scaffolder b71b627969
Some checks failed
Build and Publish TechDocs / build-and-publish (push) Has been cancelled
CI Pipeline / Build and Test (push) Failing after 2s
initial commit
Change-Id: I14c0b6972a8e96674b7720769bae8fb0157f00de
2026-03-24 14:04:38 +00:00

22 lines
488 B
YAML

services:
mysql:
image: mysql:9.6
ports:
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=
- MYSQL_ALLOW_EMPTY_PASSWORD=true
- MYSQL_USER=petclinic
- MYSQL_PASSWORD=petclinic
- MYSQL_DATABASE=petclinic
volumes:
- "./conf.d:/etc/mysql/conf.d:ro"
postgres:
image: postgres:18.3
ports:
- "5432:5432"
environment:
- POSTGRES_PASSWORD=petclinic
- POSTGRES_USER=petclinic
- POSTGRES_DB=petclinic