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

https://github.com/asapdotid/dcc-adminer

Docker Compose Adminer
https://github.com/asapdotid/dcc-adminer

adminer adminer-docker database database-management

Last synced: 3 months ago
JSON representation

Docker Compose Adminer

Awesome Lists containing this project

README

        

# Docker Compose Adminer

Docker image base `adminer` [link](https://hub.docker.com/_/adminer)

## Make sure docker network exist:

```bash
docker network create proxy
docker network create secure
```

## Makefile commands for run the code

```bash
make help
```

First of all:

- Init setup env: `make init`
- Init docker compose env: `make set-env`

## Custom environment file

> After first command `make ini` do not change env file on `.make/.env`

> After command `make set-env` can change value of env file on `src/.env`

```bash
# Adminer Port
ADMINER_PORT=8080
# Custom config (PHP)
ADMINER_MEMORY_LIMIT=-1
ADMINER_UPLOAD_MAX_FILESIZE=1G
ADMINER_POST_MAX_SIZE=1G
ADMINER_MAX_EXECUTION_TIME=0
```

Running command `make`:

```bash
# Start docker compose
make up
```

```bash
# Stop docker compose
make down
```

```bash
# Check logs docker compose
make logs
```

## Adminer URL address (default env `8080`)

```bash
http://localhost:8080
```

## License

MIT / BSD

## Author Information

This Code was created in 2023 by [Asapdotid](https://github.com/asapdotid) 🚀