init commit

This commit is contained in:
2021-03-18 15:54:04 +01:00
commit 5105cea66f
3 changed files with 23 additions and 0 deletions

5
.env.dist Normal file
View File

@@ -0,0 +1,5 @@
VIRTUAL_HOST=
PMA_ABSOLUTE_URI=
PMA_PORT=
LET_EMAIL=

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.env

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
version: '3.1'
services:
phpmyadmin:
container_name: phpmyadmin
image: phpmyadmin
restart: always
ports:
- ${PMA_PORT}:80
environment:
- PMA_ARBITRARY=1
networks:
- web
networks:
web:
external: true