Fixed for Production and Staging

This commit is contained in:
2023-06-08 00:46:50 -07:00
parent 05f289eae0
commit 9720f10038
4 changed files with 43 additions and 26 deletions

View File

@@ -0,0 +1,28 @@
version: '3.8'
services:
joomla:
ports:
- "8000:80"
phpmyadmin:
image: phpmyadmin/phpmyadmin:latest # https://hub.docker.com/_/phpmyadmin
environment:
PMA_USER: ${MYSQL_USER}
PMA_PASSWORD: ${MYSQL_PASSWORD}
PMA_HOST: mariadb-joomla
UPLOAD_LIMIT: '200M'
ports:
- "8001:80"
volumes:
- "/etc/timezone:/etc/timezone:ro"
- "/etc/localtime:/etc/localtime:ro"
mailhog:
image: 'mailhog/mailhog:latest' # https://hub.docker.com/r/mailhog/mailhog
ports:
- "${SMTP_PORT}:1025"
- "8002:8025"
volumes:
- "/etc/timezone:/etc/timezone:ro"
- "/etc/localtime:/etc/localtime:ro"