Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/javanile/adminer
Database management in a single PHP file.
https://github.com/javanile/adminer
adminer database-management development docker docker-compose mysql
Last synced: 7 days ago
JSON representation
Database management in a single PHP file.
- Host: GitHub
- URL: https://github.com/javanile/adminer
- Owner: javanile
- License: mit
- Created: 2018-05-03T13:43:27.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2023-09-11T16:19:24.000Z (over 1 year ago)
- Last Synced: 2024-12-10T00:15:35.956Z (2 months ago)
- Topics: adminer, database-management, development, docker, docker-compose, mysql
- Language: PHP
- Homepage:
- Size: 21.5 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ⭐ Give me a star, please! ⭐
---
# javanile/adminer
[![StyleCI](https://github.styleci.io/repos/132001150/shield?branch=master)](https://github.styleci.io/repos/132001150)
[![](https://images.microbadger.com/badges/image/javanile/adminer.svg)](https://hub.docker.com/r/javanile/adminer)
[![](https://images.microbadger.com/badges/version/javanile/adminer.svg)](https://hub.docker.com/r/javanile/adminer)Replace phpMyAdmin with Adminer and you will get a tidier user interface,
better support for MySQL features, higher performance and more security.## Use with `docker-compose.yml`
```yaml
version: '3'services:
adminer:
image: javanile/adminer
environment:
- MYSQL_ROOT_PASSWORD=secret
ports:
- 8080:8080
links:
- mysqlmysql:
image: mysql:5.7
environment:
- MYSQL_ROOT_PASSWORD=secret
```## Command-line usage
```bash
$ docker run --rm -p 8080:8080 -e MYSQL_ROOT_PASSWORD=secret javanile/adminer
```## TODO
* Support for WordPress environment variables
* Support for MongoDB environment variables
* Support for DB_* environment variables
* Add Travis CI and testing pipeline