linuxserver / docker-phpmyadmin

GNU General Public License v3.0
23 stars 2 forks source link

[BUG] Themes folder not working for phpmyadmin #29

Closed LonlyGamerX closed 1 year ago

LonlyGamerX commented 1 year ago

Is there an existing issue for this?

Current Behavior

For some reason my themes are not been showing on the webstie, not sure if im doing it right as i couldnt find any info on your docker hub, all my themes are in /data/thems/[name of them folder]

Expected Behavior

Load my themes in so i can use a darker theme

Steps To Reproduce

Just adding my own folder into the environment and starting it up and checking phpmyadmin to see if i have new themes which i do not

Environment

- OS: Ubuntu 22
- How docker service was installed: Running of docker compose file

CPU architecture

arm64

Docker creation

version: '3'

services:
  db:
    image: mysql:latest
    container_name: mysql-db
    restart: unless-stopped
    environment:
      MYSQL_ROOT_PASSWORD: 'test123'
    volumes:
      ./mysql-data:/var/lib/mysql
    ports:
      "3306:3306"
    networks:
      databaseStuff

  phpmyadmin:
    image: lscr.io/linuxserver/phpmyadmin:latest
    container_name: phpmyadmin
    environment:   
      PUID=1000
      PGID=1000
      PMA_ARBITRARY=1
PMA_HOST=db
PMA_PORT=3306
PMA_ABSOLUTE_URI=https://cloud.error404network.gg/
volumes:
./data/config:/config
./data/themes:/themes
ports:
"9800:80"
restart: unless-stopped
networks:
databaseStuff

networks:
  databaseStuff:
    driver: bridge

Container logs

[migrations] started
[migrations] 01-nginx-site-confs-default: skipped
[migrations] 02-default-location: skipped
[migrations] done
───────────────────────────────────────

      ██╗     ███████╗██╗ ██████╗
      ██║     ██╔════╝██║██╔═══██╗
      ██║     ███████╗██║██║   ██║
      ██║     ╚════██║██║██║   ██║
      ███████╗███████║██║╚██████╔╝
      ╚══════╝╚══════╝╚═╝ ╚═════╝

   Brought to you by linuxserver.io
───────────────────────────────────────

To support LSIO projects visit:
https://www.linuxserver.io/donate/

───────────────────────────────────────
GID/UID
───────────────────────────────────────

User UID:    1000
User GID:    1000
───────────────────────────────────────

using keys found in /config/keys
[custom-init] No custom files found, skipping...
[ls.io-init] done.
github-actions[bot] commented 1 year ago

Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.