Setup & Configuration

We need to install the service through Portainer and configure any necessary settings.

Preparation

There are some things we need to do in preparation to install this service.

Volumes

Database Files

This service will need access to the folder where embedded databases, such as SQLite, are stored.  It is not recommended to access databases that are in use.

Ensure your user has permissions to access the folder.


Installation

The service can be installed through the Portainer web interface. 

Learn about creating a new stack.

Docker Compose

Use the following code to install the service:

---
services:
  adminer:
    restart: unless-stopped
    image: adminer
    container_name: adminer
    ports:
    - "8222:8080"

Updating

Re-Deploy the Stack

This service has been optimized for running in Docker. 

This allows you to re-deploy the stack through Portainer to download the latest updates.