Files
dbtool-cli-v1/docker-compose.demo.yml
Paperclip CTO 7424491944
Some checks failed
release-smoke / macos-13 / x86_64-apple-darwin (push) Has been cancelled
release-smoke / ubuntu-latest / x86_64-unknown-linux-gnu (push) Has been cancelled
release-smoke / windows-latest / x86_64-pc-windows-msvc (push) Has been cancelled
chore: bootstrap independent git workflow
Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-03-26 03:49:29 +00:00

31 lines
764 B
YAML

services:
postgres:
image: postgres:16
ports:
- "55432:5432"
environment:
POSTGRES_DB: dbtool_demo
POSTGRES_USER: dbtool
POSTGRES_PASSWORD: dbtool
healthcheck:
test: ["CMD-SHELL", "pg_isready -U dbtool -d dbtool_demo"]
interval: 5s
timeout: 5s
retries: 20
mysql:
image: mysql:8.4
ports:
- "53306:3306"
environment:
MYSQL_DATABASE: dbtool_demo
MYSQL_USER: dbtool
MYSQL_PASSWORD: dbtool
MYSQL_ROOT_PASSWORD: dbtoolroot
command: ["mysqld", "--character-set-server=utf8mb4", "--collation-server=utf8mb4_unicode_ci"]
healthcheck:
test: ["CMD-SHELL", "mysqladmin ping -uroot -pdbtoolroot"]
interval: 5s
timeout: 5s
retries: 30