Employees sample database (~300k rows) pre-loaded for MySQL & PostgreSQL. Pull and query instantly.
681
Pre-built Docker images with the classic employees sample database already loaded. No setup needed — pull, run, and start querying in seconds.
| Tag | Database | Architectures |
|---|---|---|
mysql-8.4 | MySQL 8.4 | linux/amd64 · linux/arm64 |
mysql-9.5 | MySQL 9.5 | linux/amd64 · linux/arm64 |
postgresql-16 | PostgreSQL 16 | linux/amd64 · linux/arm64 |
postgresql-17 | PostgreSQL 17 | linux/amd64 · linux/arm64 |
# MySQL 8.4
docker run -d -p 3306:3306 -e MYSQL_ROOT_PASSWORD=test palemoky/test-db:mysql-8.4
mysql -h 127.0.0.1 -P 3306 -uroot -ptest employees
# PostgreSQL 17
docker run -d -p 5432:5432 -e POSTGRES_PASSWORD=test palemoky/test-db:postgresql-17
psql -h 127.0.0.1 -p 5432 -U postgres -d employees
| MySQL | PostgreSQL | |
|---|---|---|
| User | root | postgres |
| Password | (set via MYSQL_ROOT_PASSWORD) | (set via POSTGRES_PASSWORD) |
| Database | employees | employees |
The employees database contains ~300,000 employee records and ~2.8 million salary entries (167 MB uncompressed). It is widely used for:
Original data by Fusheng Wang & Carlo Zaniolo (Siemens Corporate Research).
Schema by Giuseppe Maxia · licensed under CC BY-SA 3.0.
Content type
Image
Digest
sha256:0ca8632e0…
Size
186.6 MB
Last updated
5 months ago
docker pull palemoky/test-db:postgresql-16