# 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 bridge in portainer called mdb-management on the Networks page.
  • Navigate to the Stacks page 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 Template with the docker-compose file for later use

  • Open your browser and navigate to https://[vm-ip]:8080
  • Done!
Page Info: Created by GitHub on Jun 9, 2023 (last updated a minute ago by GitHub)