Skip to content
This repository was archived by the owner on Dec 12, 2020. It is now read-only.

Latest commit

 

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pagekit Banner

Pagekit CMS

Build Status

Docker image for the Pagekit CMS

Uses nginx + php5-fpm + MySQL

Usage

$ docker run -d -p 8080:80 pagekit/pagekit

Use with a MySQL container

$ docker run -d \
  -e MYSQL_ROOT_PASSWORD=YOURPASSWORD \
  -e MYSQL_DATABASE=pagekit \
  --name pagekit-mysql \
  mysql
$ docker run -d \
  -p 8080:80 \
  --link pagekit-mysql:mysql \
  --name pagekit-web \
  pagekit/pagekit

On install, use mysql as host.

Use Docker-compose

  • mkdir ~/pagekit && cd ~/pagekit && vim docker-compose.yml
version: '2'
services:
  db:
    image: mysql
    expose:
        - "3306"
    environment:
        - MYSQL_ROOT_PASSWORD=YOURPASSWORD
        - MYSQL_DATABASE=pagekit
    volumes:
        - ~/pagekit/mysql:/var/lib/mysql
  pagekit:
    image: pagekit/pagekit
    ports:
        - "8080:80"
    links:
        - db:db
    volumes:
        - ~/pagekit/storage:/pagekit/storage
        - ~/pagekit/app/cache:/pagekit/app/cache
  • Change your password YOURPASSWORD
  • Run cd ~/pagekit && docker-compose up -d
  • On install, use db as host.

About

the docker image maker for the pagekit repository at we regularly release new images to dockerhub

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages