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
- Host: GitHub
- URL: https://github.com/nvalerkos/docker-concrete5
- Owner: nvalerkos
- License: mit
- Created: 2018-09-04T08:04:14.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-07-15T13:06:25.000Z (almost 7 years ago)
- Last Synced: 2025-05-31T19:29:58.944Z (about 1 year ago)
- Topics: concrete5, docker-image
- Language: Shell
- Homepage: https://hub.docker.com/r/nvalerkos/concrete5/
- Size: 8.79 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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