Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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:
- mysql

mysql:
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