Fixed for Production and Staging
This commit is contained in:
28
docker-compose.staging.yml
Normal file
28
docker-compose.staging.yml
Normal 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"
|
||||
Reference in New Issue
Block a user