docker-adminer
docker-adminer copied to clipboard
[bug fix] designs/hydra/adminer.css missing, ADMINER_DESIGN: hydra
trafficstars
...
adminer:
image: adminer:4.8.1
hostname: adminer
restart: unless-stopped
ports:
- "8080:8080"
command: |
php -S [::]:8080 -t /var/www/html;
wget https://raw.githubusercontent.com/Niyko/Hydra-Dark-Theme-for-Adminer/master/adminer.css -O /var/www/html/designs/hydra/adminer.css
environment:
ADMINER_DEFAULT_SERVER: db
ADMINER_DESIGN: hydra
networks:
- external
...
I do not understand this issue. What is the problem? The hydra design is working just fine for me and is included with the Docker Image.
but on my windows docker env, the adminer.css file is missing in docker adminer container....
https://github.com/TimWolla/docker-adminer/issues/166