Skip to content

How to reference plugins in docker-compose? #124

Answered by shimizurei
shimizurei asked this question in Q&A
Discussion options

You must be logged in to vote

Found the answer here.

Compose file (adminer section) ultimately looks like this:

services:
  adminer:
    image: 'adminer:latest'
      restart: always
      ports:
        - '8080:8080'
      volumes:
        - ./plugins/login-password-less.php:/var/www/html/plugins-enabled/login-password-less.php
      environment:
        - 'ADMINER_DESIGN=dracula'
        - 'ADMINER_PLUGINS=dump-json dump-zip' # #### REMOVE any plugins in a bind mount from the list

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by TimWolla
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #123 on June 20, 2022 17:15.