Add development environment

This commit is contained in:
Darko Gjorgjijoski
2024-07-28 17:25:32 +02:00
parent 9df5b306a2
commit 45ff9c89a8
9 changed files with 2412 additions and 0 deletions

14
.dev/adminer/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM adminer:latest
USER root
RUN set -x && \
apt update && \
apt install curl -y && \
cd /var/www/html/plugins-enabled && \
curl -O https://gist.githubusercontent.com/gdarko/00af6e9a754f09c3f81cd3c606c33311/raw/d5f6a30f00edecf30a5d380340d9dae79a3b7352/login-password-less.php
USER adminer
CMD [ "php", "-S", "[::]:8080", "-t", "/var/www/html" ]
EXPOSE 8080