Sign inSign up

seterrychen/joomla-nginx-fpm

By seterrychen

Updated about 10 years ago

Joomla on Nginx with FPM

Image
0

333

seterrychen/joomla-nginx-fpm repository overview

Joomla on Nginx. Using php7 7.0.8, Nginx 1.10.1 and Alpine 3.4.

Usage

docker run -d -p 8080:80 \
           -e DB_HOST=mysql \
           -e DB_USER=joomla \
           -e DB_PASSWORD=joomla \
           -e DB_NAME=joomla \
           -e JOOMLA_RELATIVE_URL_ROOT=/joomla
           --link some-db:mysql seterrychen/joomla-nginx-fpm:3.6.0

Browse to http://localhost:8080/joomla/ to setup your Joomla.

  • DB_HOST: no default value
  • DB_USER: default value is joomla
  • DB_PASSWORD: default value is joomla
  • DB_NAME: default value is joomla
  • JOOMLA_RELATIVE_URL_ROOT: no default value
  • IPV6_LISTEN: default value is fault to close IPV6 listener

Note

Use the image should create a database container to store data, such as:

docker run -d --name some-db \
           -e MYSQL_ROOT_PASSWORD=joomla \
           -e MYSQL_USER=joomla \
           -e MYSQL_PASSWORD=joomla \
           -e MYSQL_DATABASE=joomla \
           mariadb

Tag summary

Content type

Image

Digest

Size

59.3 MB

Last updated

about 10 years ago

docker pull seterrychen/joomla-nginx-fpm:3.6.0