2016-07-25 00:07:22 +00:00
|
|
|
# docker-images
|
2016-07-25 01:13:25 +00:00
|
|
|
|
2016-08-01 02:22:06 +00:00
|
|
|
various based images for Docker
|
2016-07-25 01:13:25 +00:00
|
|
|
|
|
|
|
## Available Images
|
|
|
|
|
2016-08-09 02:06:36 +00:00
|
|
|
- [index][1]
|
2017-03-18 01:16:10 +00:00
|
|
|
- [pluie/alpine][2] ( ~ 9 MB ) Alpine/3.5
|
|
|
|
- [pluie/alpine-apache][3] ( ~ 50 MB ) Apache/2.4.25 Php/5.6.30
|
|
|
|
- [pluie/alpine-apache-fpm][7] ( ~ 51 MB ) Apache/2.4.25 Php/5.6.30 Fpm
|
|
|
|
- [pluie/alpine-symfony][6] ( ~ 83 MB ) Symfony2.8 or 3.2
|
|
|
|
- [pluie/alpine-apache-php7][8] ( ~ 45 MB ) Apache/2.4.25 Php/7.0.16
|
|
|
|
- [pluie/alpine-symfony-php7][9] ( ~ 77 MB ) Symfony2.8 or 3.2 Php/7.0.16
|
|
|
|
- [pluie/alpine-mysql][4] ( ~181 MB ) Mysql/5.6 ( MariaDB )
|
2018-08-07 19:31:46 +00:00
|
|
|
- [pluie/libecho][10] ( ~288 MB ) Vala 0.34.2 pluie-echo-0.2
|
2018-08-14 00:22:12 +00:00
|
|
|
- [pluie/ubuntu][12] ( ~141 MB ) Ubuntu 18.04
|
|
|
|
- [pluie/libyaml][11] ( ~538 MB ) Vala 0.40.4 pluie-yaml-0.4
|
2016-08-01 02:22:06 +00:00
|
|
|
- [docker tips][5]
|
2016-07-25 01:13:25 +00:00
|
|
|
|
|
|
|
## Base Image Structure
|
|
|
|
|
|
|
|
```
|
|
|
|
project/
|
|
|
|
|
|
|
|
|
|-- install.d/ # deployed in /scripts on target container
|
|
|
|
| | # launch on docker image building process
|
|
|
|
| | # XX-name.sh - low XX are run first
|
|
|
|
| |-- 00-util.sh
|
|
|
|
| |-- 40-fix.sh
|
|
|
|
|
|
|
|
|
|-- pre-init.d/ # deployed in /scripts on target container
|
|
|
|
| | # launch on docker container running process
|
2016-08-09 01:08:26 +00:00
|
|
|
| |-- 50-builder.sh
|
2016-07-25 01:13:25 +00:00
|
|
|
|
|
|
|
|
|-- build # build docker image : ./build [TAG]
|
|
|
|
|-- common.sh # don't modify - sourced by main.sh to execute pre-init.d scripts first
|
|
|
|
|-- install.sh # don't modify - execute install.d scripts on docker building process
|
|
|
|
|-- main.sh # source common.sh then execute entry point instruction
|
|
|
|
|-- util.sh # sourced by common.sh
|
|
|
|
```
|
|
|
|
|
|
|
|
## Extended Image Structure
|
|
|
|
|
|
|
|
```
|
|
|
|
project/
|
|
|
|
|
|
|
|
|
|-- install.d/
|
|
|
|
|-- pre-init.d/
|
|
|
|
|
|
|
|
|
|-- build # same as based image
|
|
|
|
|-- main.sh # source based common.sh then execute entry point instruction
|
|
|
|
```
|
|
|
|
|
|
|
|
## Extended Image Dockerfile
|
|
|
|
|
|
|
|
in any case, keep that :
|
|
|
|
```
|
|
|
|
FROM $baseImage
|
|
|
|
|
|
|
|
MAINTAINER $author $url
|
|
|
|
|
|
|
|
ADD files.tar /scripts
|
|
|
|
|
|
|
|
RUN bash /scripts/install.sh
|
|
|
|
```
|
|
|
|
|
|
|
|
then define only
|
|
|
|
__EXPOSE VOLUME__ & __ENV__ instructions
|
|
|
|
|
|
|
|
## Building Process
|
|
|
|
|
|
|
|
__build__ script archive project files in __files.tar__ then execute the __Docker build__ command.
|
|
|
|
```
|
|
|
|
./build [optionalTag]
|
|
|
|
```
|
|
|
|
|
|
|
|
no need to worry about pwd, docker repository and image name depends on directory structure.
|
|
|
|
you can keep same __build__ script in any project
|
2016-08-01 02:22:06 +00:00
|
|
|
|
|
|
|
[1]: https://github.com/pluie-org/docker-images
|
|
|
|
[2]: https://github.com/pluie-org/docker-images/tree/master/pluie/alpine
|
2016-08-13 19:43:47 +00:00
|
|
|
[3]: https://github.com/pluie-org/docker-images/tree/master/pluie/alpine-apache
|
|
|
|
[4]: https://github.com/pluie-org/docker-images/tree/master/pluie/alpine-mysql
|
2016-08-12 02:06:57 +00:00
|
|
|
[7]: https://github.com/pluie-org/docker-images/tree/master/pluie/alpine-apache-fpm
|
2016-08-01 02:22:06 +00:00
|
|
|
[5]: https://github.com/pluie-org/docker-images/blob/master/DOCKER.md
|
2016-08-09 01:08:26 +00:00
|
|
|
[6]: https://github.com/pluie-org/docker-images/tree/master/pluie/alpine-symfony
|
2017-01-30 01:58:46 +00:00
|
|
|
[8]: https://github.com/pluie-org/docker-images/tree/master/pluie/alpine-apache-php7
|
|
|
|
[9]: https://github.com/pluie-org/docker-images/tree/master/pluie/alpine-symfony-php7
|
2018-08-07 19:31:46 +00:00
|
|
|
[10]: https://github.com/pluie-org/docker-images/tree/master/pluie/libecho
|
|
|
|
[11]: https://github.com/pluie-org/docker-images/tree/master/pluie/libyaml
|
2018-08-14 00:22:12 +00:00
|
|
|
[12]: https://github.com/pluie-org/docker-images/tree/master/pluie/ubuntu
|