# Adminer - Database Management Tool
Adminer is a PHP based Management Tool for SQL Databases like MariaDB. It can be used to create users and manage privileges to databases as well as to work with the database itself. It is comparable to PhpMyAdmin.
# Installation
- Log into portainer
https://[vm-ip]:9443 - Make sure you've created a network of type
bridgein portainer calledmdb-managementon theNetworkspage. - Navigate to the
Stackspage and click on+ Add stack
# docker-compose.yml
version: '2.4'
services:
adminer:
image: adminer:4.8.1
restart: always
ports:
- 8080:8080
cpus: 0.5
mem_limit: 256m
networks:
default:
external: true
name: mdb-management
Note: You can create an
App Templatewith the docker-compose file for later use
- Open your browser and navigate to
https://[vm-ip]:8080 - Done!