Files
test-argocd-gitops-c6/docker-compose.yml
Scaffolder a2cd2416fe
Some checks failed
Build and Publish TechDocs / build-and-publish (push) Failing after 1m4s
initial commit
Change-Id: I732e7af790c42cbd6fc2c2e754882fef44f90c00
2026-05-12 23:56:04 +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