An open API service indexing awesome lists of open source software.

https://github.com/nvalerkos/docker-concrete5

Concrete5 Docker Image
https://github.com/nvalerkos/docker-concrete5

concrete5 docker-image

Last synced: 2 months ago
JSON representation

Concrete5 Docker Image

Awesome Lists containing this project

README

          

# Concrete5 Installed with LAMP.
> Based on https://hub.docker.com/r/mattrayner/lamp/

## To Build image locally:

docker build . -t concrete5

Otherwise see
https://hub.docker.com/r/nvalerkos/concrete5/

## Automatically adding source code by default
> First install extracts the concrete5 source code to /app/

docker run -p "80:80" -v ${PWD}/app:/app -v ${PWD}/mysql:/var/lib/mysql --name project_name_goes_here nvalerkos/concrete5

## Otherwise include the DO_NOT_INIT_CONCRETE5=true as ENV:

docker run -p "80:80" -e DO_NOT_INIT_CONCRETE5=true -v ${PWD}/app:/app -v ${PWD}/mysql:/var/lib/mysql --name project_name_goes_here nvalerkos/concrete5

## Stop it:

docker stop project_name_goes_here

## If you want to just start it after exited:

docker start project_name_goes_here