adminer-fips
Adminer-FIPS Overview
Secure your stack with a FIPS-validated, hardened Adminer image freshly-built by Minimus. Minimus images always include the most up-to-date package version for all packages and dependencies contained in the image.
Adminer is a lightweight, single-file PHP tool for managing databases through a web browser. It provides one consistent interface for connecting to MySQL, MariaDB, PostgreSQL, SQLite, MS SQL, and Oracle servers, letting you browse and edit data, run SQL queries, and export or import table structures and data. Use this image when you need to meet the requirements for FIPS-validated cryptographic protection.
FIPS 140-3 Certification
This image is FIPS-validated to ensure its cryptographic operations meet the Federal Information Processing Standards (FIPS) required for secure government and regulated environments. Its core cryptographic modules are validated under the NIST Cryptographic Module Validation Program (CMVP) and comply with the FIPS 140-3 standard.
To verify that the FIPS 140-3 provider is configured and active, follow the instructions in the FIPS compliance tab.
Try It Out
Adminer needs a database server to connect to. The steps below start a MySQL database and Adminer using Minimus images.
Step 1 - Create a Docker Network
Create a shared network so Adminer can reach the database by container name:
docker network create adminer-netStep 2 - Start a MySQL Database
Start a MySQL database using the Minimus MySQL-FIPS image. The following command sets the root password to Minimus!, but you can set any password you want:
docker run -d --name mysql \
--net adminer-net \
-e MYSQL_ROOT_PASSWORD=Minimus! \
reg.mini.dev/mysql-fipsStep 3 - Start Adminer
Run Adminer on the same network as the database:
docker run --rm -d --name adminer \
--net adminer-net \
-p 8080:8080 \
reg.mini.dev/adminer-fipsOnce both containers are running, visit http://localhost:8080 in your browser. Clear the defaults and login as follows:
- System:
MySQL / MariaDB - Server:
mysql - Username:
root - Password:
Minimus!(or whatever you set in Step 2)
You should see the database selection screen, listing the databases on the server along with links to run SQL commands, and manage tables, users, and server status.
Step 4 - Clean Up
Stop and remove the containers and network:
docker rm -f adminer mysql
docker network rm adminer-netTechnical Considerations
The Adminer-FIPS image provided by Minimus is a FIPS-validated, slim, security-hardened alternative to the public image.
Adminer-FIPS built by Minimus:
- Runs as a non-root user (UID 100) by default, matching the public image's non-root default of user
adminer(also UID 100). - Drill down on the version specification tab to see the default user, listening ports, entrypoint, volumes, environment variables, etc.
The Payoff
A hardened, minimal image that will remain more secure for the long run and accrue vulnerabilities at a slower rate.
- See the risk reduction dashboard for a detailed CVE comparison over the past 30 days.
- Review the compliance report to see the default hardening and security configurations for the image.
Terms & Info
Trademark
This catalog is published by Minimus. All product names, logos, and marks, other than those belonging to Minimus, shown are owned by their respective rights holders and appear here only to identify the open source software each image contains. Minimus claims no ownership of those marks and implies no affiliation with, endorsement by, certification by, or sponsorship by any rights holder.
Disclaimer
Images are provided "as-is" without warranty of any kind. "Hardened" refers to the security configuration applied at the time of build and does not constitute a guarantee of ongoing security or absence of vulnerabilities. The free tier is provided without support, SLA, or guaranteed patching timelines. Security updates may be applied to paid subscriptions before or instead of free tier images. By pulling or using any image you agree to our Terms of Use.