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
- Host: GitHub
- URL: https://github.com/asapdotid/dcc-adminer
- Owner: asapdotid
- License: mit
- Created: 2023-12-22T03:07:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-19T11:45:14.000Z (6 months ago)
- Last Synced: 2024-12-27T16:43:03.291Z (5 months ago)
- Topics: adminer, adminer-docker, database, database-management
- Language: Makefile
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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) 🚀