updated documenation, fixed install script

This commit is contained in:
2023-06-07 14:16:31 -07:00
parent 815a551a07
commit 05f289eae0
12 changed files with 146 additions and 174 deletions

View File

@@ -20,6 +20,8 @@ services:
MYSQL_DATABASE: ${MYSQL_DATABASE}
volumes:
- joomla-db:/var/lib/mysql
- "/etc/timezone:/etc/timezone:ro"
- "/etc/localtime:/etc/localtime:ro"
joomla:
image: joomla:4.3.2 # https://hub.docker.com/_/joomla
@@ -31,7 +33,10 @@ services:
JOOMLA_DB_NAME: ${MYSQL_DATABASE}
volumes:
- ./html:/var/www/html
- ./development:/development
- ./php/php.ini:/usr/local/etc/php/php.ini
- "/etc/timezone:/etc/timezone:ro"
- "/etc/localtime:/etc/localtime:ro"
ports:
- "8000:80"
@@ -44,9 +49,15 @@ services:
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:
- "1025:1025"
- "8002:8025"
- "${SMTP_PORT}:1025"
- "8002:8025"
volumes:
- "/etc/timezone:/etc/timezone:ro"
- "/etc/localtime:/etc/localtime:ro"