Skip to content

Latest commit

 

History

History
58 lines (40 loc) · 1.74 KB

README.md

File metadata and controls

58 lines (40 loc) · 1.74 KB

docker-codeigniter-apache 🐳

License Stars Issues Forks

Introduction

Build a simple CodeIgniter development environment with docker-compose. CodeIgniter version of docker-laravel-apache.

Usage

$ git clone [email protected]:kenjis/docker-codeigniter-apache.git
$ cd docker-codeigniter-apache
$ make create-project # Install the latest CodeIgniter4 project
$ make install-recommend-packages # Not required

http://localhost

Read this Makefile.

Container structure

├── web
├── db
└── phpmyadmin

web container

db container

phpmyadmin container

Persistent MySQL Storage

By default, the named volume is mounted, so MySQL data remains even if the container is destroyed. If you want to delete MySQL data intentionally, execute the following command.

$ docker-compose down -v && docker-compose up