├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── application └── Dockerfile ├── data └── Dockerfile ├── docker-compose.yml ├── mariadb └── Dockerfile ├── mysql └── Dockerfile ├── nginx ├── Dockerfile ├── codeigniter.conf └── nginx.conf ├── php ├── Dockerfile-55 ├── Dockerfile-56 ├── Dockerfile-70 ├── codeigniter.ini └── vh-codeigniter.pool.conf ├── redis └── Dockerfile ├── testing.sh └── workspace └── Dockerfile /.gitignore: -------------------------------------------------------------------------------- 1 | logs 2 | ci 3 | *.bak 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboy/codeigniter-docker/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboy/codeigniter-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboy/codeigniter-docker/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboy/codeigniter-docker/HEAD/README.md -------------------------------------------------------------------------------- /application/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM debian:jessie 2 | 3 | MAINTAINER Bo-Yi Wu 4 | 5 | WORKDIR /var/www/codeigniter 6 | 7 | CMD ["true"] 8 | -------------------------------------------------------------------------------- /data/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM debian:jessie 2 | 3 | MAINTAINER Bo-Yi Wu 4 | 5 | CMD ["true"] 6 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboy/codeigniter-docker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /mariadb/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mariadb:latest 2 | 3 | MAINTAINER Bo-Yi Wu 4 | 5 | CMD ["mysqld"] 6 | 7 | EXPOSE 3306 8 | -------------------------------------------------------------------------------- /mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboy/codeigniter-docker/HEAD/mysql/Dockerfile -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboy/codeigniter-docker/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/codeigniter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboy/codeigniter-docker/HEAD/nginx/codeigniter.conf -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboy/codeigniter-docker/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /php/Dockerfile-55: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboy/codeigniter-docker/HEAD/php/Dockerfile-55 -------------------------------------------------------------------------------- /php/Dockerfile-56: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboy/codeigniter-docker/HEAD/php/Dockerfile-56 -------------------------------------------------------------------------------- /php/Dockerfile-70: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboy/codeigniter-docker/HEAD/php/Dockerfile-70 -------------------------------------------------------------------------------- /php/codeigniter.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboy/codeigniter-docker/HEAD/php/codeigniter.ini -------------------------------------------------------------------------------- /php/vh-codeigniter.pool.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboy/codeigniter-docker/HEAD/php/vh-codeigniter.pool.conf -------------------------------------------------------------------------------- /redis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboy/codeigniter-docker/HEAD/redis/Dockerfile -------------------------------------------------------------------------------- /testing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboy/codeigniter-docker/HEAD/testing.sh -------------------------------------------------------------------------------- /workspace/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboy/codeigniter-docker/HEAD/workspace/Dockerfile --------------------------------------------------------------------------------