Sign inSign up

marcelmaatkamp/phreeze

By marcelmaatkamp

Updated over 8 years ago

Runs http://phreeze.com in a docker container with mysql drivers enabled.

Image
0

2.4K

marcelmaatkamp/phreeze repository overview

phreeze in a docker container

Introduction video about Phreeze

phreeze

This repository installs http://phreeze.com in a docker container running in apache with php5 with mysql drivers and modrewrite enabled.

Run a docker instance

$ docker run --name phreeze -p 80:80 marcelmaatkamp/phreeze

and goto http://127.0.0.1/phreeze/builder/

Example docker-compose.yml

Use the example docker-compose to start mysql and phreeze together:

$ git clone https://github.com/marcelmaatkamp/docker-phreeze.git && \
  cd docker-phreeze && \
  docker-compose up -d

and goto http://127.0.0.1//phreeze/builder/ to view the demo site with the connected mysql database.

Development

Use phreeze to generate your site and place in into a seperate directory like src/ and use your own Dockerfile to add these files into a new container like this:

FROM marcelmaatkamp/phreeze
COPY src/ my_new_project

and to view, start this container:

$ docker build -t my_new_project . && \
  docker run --name my_new_project -p 80:80 my_new_project

and goto http://127.0.0.1/my_new_project to view it.

Tag summary

Content type

Image

Digest

Size

204.4 MB

Last updated

over 8 years ago

docker pull marcelmaatkamp/phreeze