Skip to content

Commit 76214dc

Browse files
committed
Initial commit
0 parents  commit 76214dc

33 files changed

+1100
-0
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# top-most EditorConfig file
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
trim_trailing_whitespace = true
7+
# Unix-style newlines with a newline ending every file
8+
end_of_line = lf
9+
insert_final_newline = true

.gitattributes

+189
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,189 @@
1+
## GITATTRIBUTES FOR WEB PROJECTS
2+
#
3+
# These settings are for any web project.
4+
#
5+
# Details per file setting:
6+
# text These files should be normalized (i.e. convert CRLF to LF).
7+
# binary These files are binary and should be left untouched.
8+
#
9+
# Note that binary is a macro for -text -diff.
10+
######################################################################
11+
12+
## AUTO-DETECT - Handle line endings automatically for files detected
13+
## as text and leave all files detected as binary untouched.
14+
## This will handle all files NOT defined below.
15+
* text=auto eol=lf
16+
17+
## SOURCE CODE
18+
*.bat text
19+
*.coffee text
20+
*.css text
21+
*.htm text
22+
*.html text
23+
*.inc text
24+
*.ini text
25+
*.js text
26+
*.jsx text
27+
*.json text
28+
*.less text
29+
*.php text
30+
*.pl text
31+
*.py text
32+
*.rb text
33+
*.sass text
34+
*.scm text
35+
*.scss text
36+
*.sh text
37+
*.sql text
38+
*.styl text
39+
*.ts text
40+
*.xml text
41+
*.xhtml text
42+
43+
## MINIFIED GENERATED FILES
44+
*.min.js binary
45+
*-min.js binary
46+
*.min.css binary
47+
48+
## GENERATED COMPOSER FILE
49+
composer.lock binary
50+
51+
## GENERATED SYMFONY FILE
52+
symfony.lock binary
53+
54+
## GENERATED YARN FILE
55+
yarn.lock binary
56+
57+
## DOCUMENTATION
58+
*.markdown text
59+
*.md text
60+
*.mdwn text
61+
*.mdown text
62+
*.mkd text
63+
*.mkdn text
64+
*.mdtxt text
65+
*.mdtext text
66+
*.txt text
67+
AUTHORS text
68+
CHANGELOG text
69+
CHANGES text
70+
CONTRIBUTING text
71+
COPYING text
72+
INSTALL text
73+
license text
74+
LICENSE text
75+
NEWS text
76+
readme text
77+
*README* text
78+
TODO text
79+
80+
## TEMPLATES
81+
*.dot text
82+
*.ejs text
83+
*.haml text
84+
*.handlebars text
85+
*.hbs text
86+
*.hbt text
87+
*.jade text
88+
*.latte text
89+
*.mustache text
90+
*.phtml text
91+
*.tmpl text
92+
*.twig text
93+
*.volt text
94+
95+
## LINTERS
96+
.csslintrc text
97+
.eslintrc text
98+
.jscsrc text
99+
.jshintrc text
100+
.jshintignore text
101+
.stylelintrc text
102+
103+
## CONFIGS
104+
*.bowerrc text
105+
*.cnf text
106+
*.conf text
107+
*.config text
108+
.editorconfig text
109+
.gitattributes text
110+
.gitconfig text
111+
.gitignore text
112+
.htaccess text
113+
*.npmignore text
114+
*.yaml text
115+
*.yml text
116+
Makefile text
117+
makefile text
118+
119+
## HEROKU
120+
Procfile text
121+
.slugignore text
122+
123+
## GRAPHICS
124+
*.ai binary
125+
*.bmp binary
126+
*.eps binary
127+
*.gif binary
128+
*.ico binary
129+
*.jng binary
130+
*.jp2 binary
131+
*.jpg binary
132+
*.jpeg binary
133+
*.jpx binary
134+
*.jxr binary
135+
*.pdf binary
136+
*.png binary
137+
*.psb binary
138+
*.psd binary
139+
*.svg text
140+
*.svgz binary
141+
*.tif binary
142+
*.tiff binary
143+
*.wbmp binary
144+
*.webp binary
145+
146+
## AUDIO
147+
*.kar binary
148+
*.m4a binary
149+
*.mid binary
150+
*.midi binary
151+
*.mp3 binary
152+
*.ogg binary
153+
*.ra binary
154+
155+
## VIDEO
156+
*.3gpp binary
157+
*.3gp binary
158+
*.as binary
159+
*.asf binary
160+
*.asx binary
161+
*.fla binary
162+
*.flv binary
163+
*.m4v binary
164+
*.mng binary
165+
*.mov binary
166+
*.mp4 binary
167+
*.mpeg binary
168+
*.mpg binary
169+
*.swc binary
170+
*.swf binary
171+
*.webm binary
172+
173+
## ARCHIVES
174+
*.7z binary
175+
*.gz binary
176+
*.rar binary
177+
*.tar binary
178+
*.zip binary
179+
180+
## FONTS
181+
*.ttf binary
182+
*.eot binary
183+
*.otf binary
184+
*.woff binary
185+
*.woff2 binary
186+
187+
## EXECUTABLES
188+
*.exe binary
189+
*.pyc binary

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.idea/

Dockerfile.template

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
FROM ubuntu:20.04
2+
3+
MAINTAINER Tin Benjamin Matuka <[email protected]>
4+
5+
# set up timezone
6+
ENV TIMEZONE="UTC"
7+
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
8+
9+
# install deps, apache, php and php modules all in one run and clean up afterwards to reduce the snapshot size
10+
RUN apt-get clean && \
11+
apt-get -y update && \
12+
apt-get install -y --force-yes \
13+
locales \
14+
curl \
15+
software-properties-common \
16+
git \
17+
apt-transport-https \
18+
sudo \
19+
nvi \
20+
iproute2 \
21+
telnet \
22+
dnsutils \
23+
unzip \
24+
inetutils-ping && \
25+
locale-gen en_US.UTF-8 && \
26+
LC_ALL=en_US.UTF-8 add-apt-repository ppa:ondrej/php && apt-get update && \
27+
DEBIAN_FRONTEND=noninteractive apt-get install -y --force-yes \
28+
imagemagick \
29+
##php-packages## \
30+
php-phalcon \
31+
php-mail && \
32+
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
33+
34+
# set php version as active
35+
RUN update-alternatives --set php "/usr/bin/php##php-version##"
36+
37+
# add www-data to sudoers
38+
COPY ./sudoers /etc/sudoers.d/www-data
39+
40+
# prepare www-data to be used as main user
41+
RUN usermod -s /bin/bash -G staff www-data && \
42+
mkdir -p /var/www /app && \
43+
touch /var/www/.bash_profile && \
44+
chown -R www-data. /var/www /app
45+
46+
# install composer
47+
RUN curl https://getcomposer.org/composer-1.phar > composer1 && \
48+
curl https://getcomposer.org/composer-2.phar > composer && \
49+
mv composer1 composer /usr/local/bin/ && \
50+
chown www-data:www-data /usr/local/bin/composer1 /usr/local/bin/composer && \
51+
chmod +x /usr/local/bin/composer1 /usr/local/bin/composer
52+
53+
# install yarn without nodejs
54+
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
55+
echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list && \
56+
apt-get -y update && \
57+
apt-get install -y --no-install-recommends yarn && \
58+
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
59+
60+
# install nvm
61+
RUN sudo -i -u www-data sh -c 'curl -sL -o- "https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.0/install.sh" | bash'
62+
63+
# this lets us make our build behave differently if needed
64+
ENV DOCKER="yes"
65+
66+
# prepare entrypoint and default command
67+
COPY ./entrypoint.sh /usr/local/bin/
68+
69+
WORKDIR /app/
70+
71+
USER www-data
72+
73+
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
74+
75+
CMD ["bash", "--login"]

README.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Docker build image for PHP and Node.js applications
2+
3+
## Image versions
4+
The main difference between tagged version of the image is the installed PHP version.
5+
6+
## Available tools
7+
8+
### PHP
9+
The interpreter is run as usual with `php`. Pretty much all common modules are installed and a bunch of less common ones as well.
10+
11+
### composer
12+
Both versions 1 and 2 of composer are installed.
13+
* Composer legacy: `composer1`
14+
* Composer: `composer`
15+
16+
### nodejs - nvm and yarn
17+
nvm (Node Version Manager) is used to install whichever Node.js version you need for the specific project. Once you choose your Node.js version for a project, we suggest that you write it in `.nvmrc`, so that all other developers can use that exact same version and you don't have to hardcode it in your CI.
18+
19+
Yarn is installed globally in the container and set up to use the same Node.js you are using through nvm.

build-configs.sh

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/bin/bash
2+
3+
PHP_VERSIONS="5.6 7.0 7.1 7.3 7.4 8.0"
4+
5+
for PHP_VERSION in $PHP_VERSIONS;
6+
do
7+
echo "Building php$PHP_VERSION config"
8+
9+
DIR_NAME="php$PHP_VERSION"
10+
mkdir -p "$DIR_NAME"
11+
12+
cp entrypoint.sh "$DIR_NAME/entrypoint.sh"
13+
cp sudoers "$DIR_NAME/sudoers"
14+
15+
PHP_PACKAGES=$(cat "packages-php$PHP_VERSION.txt" | xargs)
16+
17+
sed "s/\#\#php-packages\#\#/$PHP_PACKAGES/" Dockerfile.template | sed "s/\#\#php-version\#\#/$PHP_VERSION/" > "$DIR_NAME/Dockerfile"
18+
done

entrypoint.sh

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash
2+
3+
# separate nvm data from nvm itself
4+
export NVM_DIR="/var/www/nvm-volume"
5+
[ -s "/var/www/.nvm/nvm.sh" ] && . "/var/www/.nvm/nvm.sh"
6+
7+
# run the command
8+
eval "$@"

packages-php5.6.txt

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
php5.6
2+
php5.6-amqp
3+
php5.6-apcu
4+
php5.6-bcmath
5+
php5.6-bz2
6+
php5.6-cgi
7+
php5.6-cli
8+
php5.6-common
9+
php5.6-curl
10+
php5.6-dev
11+
php5.6-gd
12+
php5.6-gmp
13+
php5.6-imagick
14+
php5.6-imap
15+
php5.6-intl
16+
php5.6-json
17+
php5.6-ldap
18+
php5.6-mailparse
19+
php5.6-mbstring
20+
php5.6-mcrypt
21+
php5.6-memcache
22+
php5.6-memcached
23+
php5.6-mysql
24+
php5.6-odbc
25+
php5.6-opcache
26+
php5.6-pgsql
27+
php5.6-pspell
28+
php5.6-readline
29+
php5.6-recode
30+
php5.6-redis
31+
php5.6-snmp
32+
php5.6-soap
33+
php5.6-sqlite3
34+
php5.6-tidy
35+
php5.6-xml
36+
php5.6-xmlrpc
37+
php5.6-xsl
38+
php5.6-zip

0 commit comments

Comments
 (0)