Files
dbtool-cli-v1/docker-compose.demo.yml
Paperclip CTO d5f69462b0
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
feat(usable): integrate current dbtool implementation snapshot
Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-04-02 08:26:18 +00:00

30 lines
742 B
YAML

services:
postgres:
image: postgres:16
ports:
- "55432:5432"
environment:
POSTGRES_DB: dbtool_demo
POSTGRES_PASSWORD: dbtoolroot
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres -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