Docker: move Dockerfiles to the main repository
Relates to #420 Fixes: - [all] remove Nginx' 'server_name' attribute - [dev] create the phpinfo() script from the Dockerfile Modifications: - [all] remove documentation/guide (to be added to the wiki) - [all] update maintainer information - [prod] differentiate 'master' (:latest) and 'stable' (:stable) images Signed-off-by: VirtualTam <virtualtam@flibidi.net>
This commit is contained in:
parent
0baf7842fc
commit
453f4653c3
14 changed files with 308 additions and 0 deletions
3
.gitattributes
vendored
3
.gitattributes
vendored
|
@ -2,11 +2,13 @@
|
||||||
* text=auto eol=lf
|
* text=auto eol=lf
|
||||||
|
|
||||||
# Ensure sources are processed
|
# Ensure sources are processed
|
||||||
|
*.conf text
|
||||||
*.css text
|
*.css text
|
||||||
*.html text diff=html
|
*.html text diff=html
|
||||||
*.js text
|
*.js text
|
||||||
*.md text
|
*.md text
|
||||||
*.php text diff=php
|
*.php text diff=php
|
||||||
|
Dockerfile text
|
||||||
|
|
||||||
# Do not alter images nor minified scripts
|
# Do not alter images nor minified scripts
|
||||||
*.ico binary
|
*.ico binary
|
||||||
|
@ -22,6 +24,7 @@
|
||||||
composer.json export-ignore
|
composer.json export-ignore
|
||||||
doc/**/*.json export-ignore
|
doc/**/*.json export-ignore
|
||||||
doc/**/*.md export-ignore
|
doc/**/*.md export-ignore
|
||||||
|
docker/ export-ignore
|
||||||
Doxyfile export-ignore
|
Doxyfile export-ignore
|
||||||
Makefile export-ignore
|
Makefile export-ignore
|
||||||
phpunit.xml export-ignore
|
phpunit.xml export-ignore
|
||||||
|
|
2
docker/.htaccess
Normal file
2
docker/.htaccess
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
Allow from none
|
||||||
|
Deny from all
|
28
docker/development/Dockerfile
Normal file
28
docker/development/Dockerfile
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
FROM debian:jessie
|
||||||
|
MAINTAINER Shaarli Community
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y \
|
||||||
|
nginx-light php5-fpm php5-gd supervisor \
|
||||||
|
git nano
|
||||||
|
|
||||||
|
ADD https://getcomposer.org/composer.phar /usr/local/bin/composer
|
||||||
|
RUN chmod 755 /usr/local/bin/composer
|
||||||
|
|
||||||
|
COPY nginx.conf /etc/nginx/nginx.conf
|
||||||
|
COPY supervised.conf /etc/supervisor/conf.d/supervised.conf
|
||||||
|
RUN echo "<?php phpinfo(); ?>" > /var/www/index.php
|
||||||
|
|
||||||
|
WORKDIR /var/www
|
||||||
|
RUN rm -rf html \
|
||||||
|
&& git clone https://github.com/shaarli/Shaarli.git shaarli \
|
||||||
|
&& chown -R www-data:www-data .
|
||||||
|
|
||||||
|
WORKDIR /var/www/shaarli
|
||||||
|
RUN composer install
|
||||||
|
|
||||||
|
VOLUME /var/www/shaarli/data
|
||||||
|
|
||||||
|
EXPOSE 80
|
||||||
|
|
||||||
|
CMD ["/usr/bin/supervisord", "-n", "-c", "/etc/supervisor/supervisord.conf"]
|
10
docker/development/IMAGE.md
Normal file
10
docker/development/IMAGE.md
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
## shaarli:dev
|
||||||
|
- [Debian 8 Jessie](https://hub.docker.com/_/debian/)
|
||||||
|
- [PHP5-FPM](http://php-fpm.org/)
|
||||||
|
- [Nginx](http://nginx.org/)
|
||||||
|
- [Shaarli](https://github.com/shaarli/Shaarli)
|
||||||
|
|
||||||
|
### Development tools
|
||||||
|
- [composer](https://getcomposer.org/)
|
||||||
|
- [git](http://git-scm.com/)
|
||||||
|
- [nano](http://www.nano-editor.org/)
|
64
docker/development/nginx.conf
Normal file
64
docker/development/nginx.conf
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
user www-data www-data;
|
||||||
|
daemon off;
|
||||||
|
worker_processes 4;
|
||||||
|
|
||||||
|
events {
|
||||||
|
worker_connections 768;
|
||||||
|
}
|
||||||
|
|
||||||
|
http {
|
||||||
|
include mime.types;
|
||||||
|
default_type application/octet-stream;
|
||||||
|
keepalive_timeout 20;
|
||||||
|
|
||||||
|
index index.html index.php;
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
root /var/www/shaarli;
|
||||||
|
|
||||||
|
access_log /var/log/nginx/shaarli.access.log;
|
||||||
|
error_log /var/log/nginx/shaarli.error.log;
|
||||||
|
|
||||||
|
location /phpinfo/ {
|
||||||
|
# add a PHP info page for convenience
|
||||||
|
fastcgi_pass unix:/var/run/php5-fpm.sock;
|
||||||
|
fastcgi_index index.php;
|
||||||
|
fastcgi_param SCRIPT_FILENAME /var/www/index.php;
|
||||||
|
include fastcgi_params;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ /\. {
|
||||||
|
# deny access to dotfiles
|
||||||
|
access_log off;
|
||||||
|
log_not_found off;
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ ~$ {
|
||||||
|
# deny access to temp editor files, e.g. "script.php~"
|
||||||
|
access_log off;
|
||||||
|
log_not_found off;
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~* \.(?:ico|css|js|gif|jpe?g|png)$ {
|
||||||
|
# cache static assets
|
||||||
|
expires max;
|
||||||
|
add_header Pragma public;
|
||||||
|
add_header Cache-Control "public, must-revalidate, proxy-revalidate";
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ (index)\.php$ {
|
||||||
|
# filter and proxy PHP requests to PHP-FPM
|
||||||
|
fastcgi_pass unix:/var/run/php5-fpm.sock;
|
||||||
|
fastcgi_index index.php;
|
||||||
|
include fastcgi.conf;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ \.php$ {
|
||||||
|
# deny access to all other PHP scripts
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
13
docker/development/supervised.conf
Normal file
13
docker/development/supervised.conf
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
[program:php5-fpm]
|
||||||
|
command=/usr/sbin/php5-fpm -F
|
||||||
|
priority=5
|
||||||
|
autostart=true
|
||||||
|
autorestart=true
|
||||||
|
|
||||||
|
[program:nginx]
|
||||||
|
command=/usr/sbin/nginx
|
||||||
|
priority=10
|
||||||
|
autostart=true
|
||||||
|
autorestart=true
|
||||||
|
stdout_events_enabled=true
|
||||||
|
stderr_events_enabled=true
|
20
docker/production/Dockerfile
Normal file
20
docker/production/Dockerfile
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
FROM debian:jessie
|
||||||
|
MAINTAINER Shaarli Community
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y curl nginx-light php5-fpm php5-gd supervisor
|
||||||
|
|
||||||
|
COPY nginx.conf /etc/nginx/nginx.conf
|
||||||
|
COPY supervised.conf /etc/supervisor/conf.d/supervised.conf
|
||||||
|
|
||||||
|
WORKDIR /var/www
|
||||||
|
RUN rm -rf html \
|
||||||
|
&& curl -L https://github.com/shaarli/Shaarli/archive/master.tar.gz | tar xvzf - \
|
||||||
|
&& mv Shaarli-master shaarli \
|
||||||
|
&& chown -R www-data:www-data shaarli
|
||||||
|
|
||||||
|
VOLUME /var/www/shaarli/data
|
||||||
|
|
||||||
|
EXPOSE 80
|
||||||
|
|
||||||
|
CMD ["/usr/bin/supervisord", "-n", "-c", "/etc/supervisor/supervisord.conf"]
|
5
docker/production/IMAGE.md
Normal file
5
docker/production/IMAGE.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
## shaarli:latest
|
||||||
|
- [Debian 8 Jessie](https://hub.docker.com/_/debian/)
|
||||||
|
- [PHP5-FPM](http://php-fpm.org/)
|
||||||
|
- [Nginx](http://nginx.org/)
|
||||||
|
- [Shaarli](https://github.com/shaarli/Shaarli)
|
56
docker/production/nginx.conf
Normal file
56
docker/production/nginx.conf
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
user www-data www-data;
|
||||||
|
daemon off;
|
||||||
|
worker_processes 4;
|
||||||
|
|
||||||
|
events {
|
||||||
|
worker_connections 768;
|
||||||
|
}
|
||||||
|
|
||||||
|
http {
|
||||||
|
include mime.types;
|
||||||
|
default_type application/octet-stream;
|
||||||
|
keepalive_timeout 20;
|
||||||
|
|
||||||
|
index index.html index.php;
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
root /var/www/shaarli;
|
||||||
|
|
||||||
|
access_log /var/log/nginx/shaarli.access.log;
|
||||||
|
error_log /var/log/nginx/shaarli.error.log;
|
||||||
|
|
||||||
|
location ~ /\. {
|
||||||
|
# deny access to dotfiles
|
||||||
|
access_log off;
|
||||||
|
log_not_found off;
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ ~$ {
|
||||||
|
# deny access to temp editor files, e.g. "script.php~"
|
||||||
|
access_log off;
|
||||||
|
log_not_found off;
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~* \.(?:ico|css|js|gif|jpe?g|png)$ {
|
||||||
|
# cache static assets
|
||||||
|
expires max;
|
||||||
|
add_header Pragma public;
|
||||||
|
add_header Cache-Control "public, must-revalidate, proxy-revalidate";
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ (index)\.php$ {
|
||||||
|
# filter and proxy PHP requests to PHP-FPM
|
||||||
|
fastcgi_pass unix:/var/run/php5-fpm.sock;
|
||||||
|
fastcgi_index index.php;
|
||||||
|
include fastcgi.conf;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ \.php$ {
|
||||||
|
# deny access to all other PHP scripts
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
20
docker/production/stable/Dockerfile
Normal file
20
docker/production/stable/Dockerfile
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
FROM debian:jessie
|
||||||
|
MAINTAINER Shaarli Community
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y curl nginx-light php5-fpm php5-gd supervisor
|
||||||
|
|
||||||
|
COPY nginx.conf /etc/nginx/nginx.conf
|
||||||
|
COPY supervised.conf /etc/supervisor/conf.d/supervised.conf
|
||||||
|
|
||||||
|
WORKDIR /var/www
|
||||||
|
RUN rm -rf html \
|
||||||
|
&& curl -L https://github.com/shaarli/Shaarli/archive/stable.tar.gz | tar xvzf - \
|
||||||
|
&& mv Shaarli-stable shaarli \
|
||||||
|
&& chown -R www-data:www-data shaarli
|
||||||
|
|
||||||
|
VOLUME /var/www/shaarli/data
|
||||||
|
|
||||||
|
EXPOSE 80
|
||||||
|
|
||||||
|
CMD ["/usr/bin/supervisord", "-n", "-c", "/etc/supervisor/supervisord.conf"]
|
5
docker/production/stable/IMAGE.md
Normal file
5
docker/production/stable/IMAGE.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
## shaarli:stable
|
||||||
|
- [Debian 8 Jessie](https://hub.docker.com/_/debian/)
|
||||||
|
- [PHP5-FPM](http://php-fpm.org/)
|
||||||
|
- [Nginx](http://nginx.org/)
|
||||||
|
- [Shaarli (stable)](https://github.com/shaarli/Shaarli/tree/stable)
|
56
docker/production/stable/nginx.conf
Normal file
56
docker/production/stable/nginx.conf
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
user www-data www-data;
|
||||||
|
daemon off;
|
||||||
|
worker_processes 4;
|
||||||
|
|
||||||
|
events {
|
||||||
|
worker_connections 768;
|
||||||
|
}
|
||||||
|
|
||||||
|
http {
|
||||||
|
include mime.types;
|
||||||
|
default_type application/octet-stream;
|
||||||
|
keepalive_timeout 20;
|
||||||
|
|
||||||
|
index index.html index.php;
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
root /var/www/shaarli;
|
||||||
|
|
||||||
|
access_log /var/log/nginx/shaarli.access.log;
|
||||||
|
error_log /var/log/nginx/shaarli.error.log;
|
||||||
|
|
||||||
|
location ~ /\. {
|
||||||
|
# deny access to dotfiles
|
||||||
|
access_log off;
|
||||||
|
log_not_found off;
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ ~$ {
|
||||||
|
# deny access to temp editor files, e.g. "script.php~"
|
||||||
|
access_log off;
|
||||||
|
log_not_found off;
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~* \.(?:ico|css|js|gif|jpe?g|png)$ {
|
||||||
|
# cache static assets
|
||||||
|
expires max;
|
||||||
|
add_header Pragma public;
|
||||||
|
add_header Cache-Control "public, must-revalidate, proxy-revalidate";
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ (index)\.php$ {
|
||||||
|
# filter and proxy PHP requests to PHP-FPM
|
||||||
|
fastcgi_pass unix:/var/run/php5-fpm.sock;
|
||||||
|
fastcgi_index index.php;
|
||||||
|
include fastcgi.conf;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ \.php$ {
|
||||||
|
# deny access to all other PHP scripts
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
13
docker/production/stable/supervised.conf
Normal file
13
docker/production/stable/supervised.conf
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
[program:php5-fpm]
|
||||||
|
command=/usr/sbin/php5-fpm -F
|
||||||
|
priority=5
|
||||||
|
autostart=true
|
||||||
|
autorestart=true
|
||||||
|
|
||||||
|
[program:nginx]
|
||||||
|
command=/usr/sbin/nginx
|
||||||
|
priority=10
|
||||||
|
autostart=true
|
||||||
|
autorestart=true
|
||||||
|
stdout_events_enabled=true
|
||||||
|
stderr_events_enabled=true
|
13
docker/production/supervised.conf
Normal file
13
docker/production/supervised.conf
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
[program:php5-fpm]
|
||||||
|
command=/usr/sbin/php5-fpm -F
|
||||||
|
priority=5
|
||||||
|
autostart=true
|
||||||
|
autorestart=true
|
||||||
|
|
||||||
|
[program:nginx]
|
||||||
|
command=/usr/sbin/nginx
|
||||||
|
priority=10
|
||||||
|
autostart=true
|
||||||
|
autorestart=true
|
||||||
|
stdout_events_enabled=true
|
||||||
|
stderr_events_enabled=true
|
Loading…
Reference in a new issue