Skip to content

Commit 16b8c63

Browse files
author
jetatomic
committed
initial
0 parents  commit 16b8c63

File tree

833 files changed

+347969
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

833 files changed

+347969
-0
lines changed

Dockerfile

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
FROM wordpress:latest
2+
3+
# Install things
4+
RUN apt-get update && apt-get install -y \
5+
libjpeg-dev \
6+
libpng-dev \
7+
# libpng12-dev \
8+
# zlibc \
9+
# zlib1g \
10+
zlib1g-dev \
11+
mysql-client \
12+
wget \
13+
unzip \
14+
nano \
15+
sudo \
16+
less \
17+
&& docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr \
18+
&& docker-php-ext-install gd mysqli zip opcache
19+
20+
# PHP upload settings
21+
RUN { \
22+
# echo 'file_uploads=On'; \
23+
echo 'upload_max_filesize=10M'; \
24+
# echo 'memory_limit=64M'; \
25+
echo 'post_max_size=10M'; \
26+
echo 'max_execution_time = 600';
27+
} > /usr/local/etc/php/conf.d/upload.ini
28+
29+
# Recommended PHP.ini settings
30+
# https://secure.php.net/manual/en/opcache.installation.php
31+
RUN { \
32+
echo 'opcache.memory_consumption=128'; \
33+
echo 'opcache.interned_strings_buffer=8'; \
34+
echo 'opcache.max_accelerated_files=4000'; \
35+
echo 'opcache.revalidate_freq=60'; \
36+
echo 'opcache.fast_shutdown=1'; \
37+
echo 'opcache.enable_cli=1'; \
38+
} > /usr/local/etc/php/conf.d/opcache-recommended.ini
39+
40+
# add custom scripts
41+
# ADD vars.sh /vars.sh
42+
# ADD entrypoint.sh /entrypoint.sh
43+
ADD plugins.sh /plugins.sh
44+
RUN chmod +x /plugins.sh # /entrypoint.sh /vars.sh
45+
46+
# WORDPRESS Plugins Setup
47+
48+
RUN mkdir /plugins
49+
50+
# Add All Plugin Files
51+
ADD ./wordpress/plugins/ /plugins
52+
53+
# Execute independently for better caching support
54+
RUN /plugins.sh /plugins/base
55+
RUN /plugins.sh /plugins/security
56+
57+
# Add Custom plugins
58+
ADD ./plugins/snapshot /var/www/html/wp-content/plugins/snapshot
59+
60+
# WORDPRESS Themes Setup
61+
62+
# ADD ./themes/my-theme /var/www/html/wp-content/themes/my-theme
63+
64+
# Cleanup
65+
RUN rm /plugins.sh && rm /plugins -r # Delete Plugins script and folder
66+
RUN apt-get clean
67+
RUN rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
# Wordpress Docker
3+
4+
Dockerfiles for a custom Wordpress Setup
5+
6+
## base
7+
8+
Contains the Wordpress installation and some additional scripts for plugins setup and variable config filtering.
9+
Includes PHP-FPM.
10+
11+
## cli
12+
13+
Adds WP-CLI to the Dockerfile to use for maintainance operations on the Wordpress installation Database.
14+
15+
## setup
16+
17+
Setup Script for a fresh wordpress setup via the WP-CLI docker container.

plugins.sh

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
#!/bin/bash
2+
3+
# WORDPRESS PLUGINS
4+
5+
# Chown Contnet Folder
6+
sudo chown -R www-data:www-data /var/www/html/wp-content
7+
8+
if [ "$1" ]; then
9+
printf "=> Checking plugins...\n"
10+
11+
while read line; do
12+
# ignore commented and empty lines
13+
case $line in
14+
''|\#*) continue ;; # skip blank lines and lines starting with #
15+
esac
16+
17+
plugin=$(echo $line | awk '{print $1}')
18+
version=$(echo $line | awk '{print $2}')
19+
20+
printf "=> Downloading $plugin"
21+
22+
download="$plugin"
23+
24+
# Download from URL
25+
if [[ $download =~ .*https.* ]]; then
26+
# get the filename to extract ( handles github download where the filename is master.zip )
27+
plugindirname="${download##*/}"
28+
# download and unzip
29+
wget $download && unzip -o $plugindirname -d /var/www/html/wp-content/plugins/
30+
31+
# delete zip file
32+
rm $plugindirname
33+
34+
# Download from Wordpress
35+
else
36+
37+
if [ ! "$version" ]; then
38+
printf " [latest] ...\n"
39+
download="$download.zip"
40+
else
41+
printf " $version ...\n"
42+
download="$download.$version.zip"
43+
fi
44+
# download and unzip
45+
wget https://downloads.wordpress.org/plugin/$download && unzip -o $download -d /var/www/html/wp-content/plugins/
46+
47+
# delete zip file
48+
rm $download
49+
fi
50+
51+
52+
53+
printf "=> Extracted Plugin to /var/www/html/wp-content/plugins/$plugin \n"
54+
55+
done <$1
56+
57+
else
58+
printf "=> No plugin dependencies listed. SKIPPING...\n"
59+
fi
60+
61+
# Chown Contnet Folder Again
62+
sudo chown -R www-data:www-data /var/www/html/wp-content

plugins/snapshot/assets/css/admin.css

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/snapshot/assets/css/admin.css.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/snapshot/assets/css/maps/admin.css.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/snapshot/assets/css/maps/menu-icon.css.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@font-face{font-family:'snapshot-menu-icon';src:url("../icons/snapshot-menu-icon.eot");src:url("../icons/snapshot-menu-icon.eot?#iefix") format("embedded-opentype"),url("../icons/snapshot-menu-icon.ttf") format("truetype"),url("../icons/snapshot-menu-icon.woff") format("woff"),url("../icons/snapshot-menu-icon.svg#snapshot-menu-icon") format("svg");font-weight:normal;font-style:normal}#toplevel_page_snapshot_pro_dashboard div.wp-menu-image::before{font-family:'snapshot-menu-icon' !important;content:'\e900'}
2+
3+
/*# sourceMappingURL=maps/menu-icon.css.map */
4+
5+
6+
/* 646019-1520459852-ai */
Loading
Loading
+14
Loading
+12
Loading
Binary file not shown.
Loading
Binary file not shown.
Binary file not shown.
1.68 KB
Binary file not shown.
+171
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,171 @@
1+
{
2+
"IcoMoonType": "selection",
3+
"icons": [
4+
{
5+
"icon": {
6+
"paths": [
7+
"M236.227 317.287c-54.040-54.040-141.656-54.040-195.697 0s-54.040 141.656 0 195.697l512.983 512.983 789.74-789.74c54.040-54.040 54.040-141.656 0-195.697s-141.656-54.040-195.697 0l-594.044 594.044-317.287-317.287z"
8+
],
9+
"attrs": [
10+
{}
11+
],
12+
"width": 1384,
13+
"isMulticolor": false,
14+
"isMulticolor2": false,
15+
"grid": 0,
16+
"tags": [
17+
"check"
18+
]
19+
},
20+
"attrs": [
21+
{}
22+
],
23+
"properties": {
24+
"order": 79,
25+
"id": 13,
26+
"name": "check",
27+
"prevSize": 32,
28+
"code": 59648
29+
},
30+
"setIdx": 0,
31+
"setId": 1,
32+
"iconIdx": 0
33+
},
34+
{
35+
"icon": {
36+
"paths": [
37+
"M623.445 128.659c0 31.373-12.2 58.678-36.601 81.917l-301.525 301.525 301.525 301.525c24.401 23.239 36.601 50.545 36.601 81.917s-12.2 58.678-36.601 81.917c-23.239 24.401-50.545 36.601-81.917 36.601s-58.678-12.2-81.917-36.601l-357.298-357.298c-12.781-11.62-25.272-25.853-37.473-42.702s-18.301-38.635-18.301-65.359c0-26.725 6.1-48.802 18.301-66.231s24.691-31.372 37.473-41.83l357.298-357.298c23.239-24.401 50.545-36.601 81.917-36.601s58.678 12.2 81.917 36.601c24.401 23.239 36.601 50.545 36.601 81.917z"
38+
],
39+
"attrs": [
40+
{}
41+
],
42+
"width": 643,
43+
"isMulticolor": false,
44+
"isMulticolor2": false,
45+
"grid": 0,
46+
"tags": [
47+
"arrow-left"
48+
]
49+
},
50+
"attrs": [
51+
{}
52+
],
53+
"properties": {
54+
"order": 76,
55+
"id": 12,
56+
"name": "arrow-left",
57+
"prevSize": 32,
58+
"code": 59649
59+
},
60+
"setIdx": 0,
61+
"setId": 1,
62+
"iconIdx": 1
63+
},
64+
{
65+
"icon": {
66+
"paths": [
67+
"M9.938 128.659c0 31.373 12.2 58.678 36.601 81.917l301.525 301.525-301.525 301.525c-24.401 23.239-36.601 50.545-36.601 81.917s12.2 58.678 36.601 81.917c23.239 24.401 50.545 36.601 81.917 36.601s58.678-12.2 81.917-36.601l357.298-357.298c12.781-11.62 25.272-25.853 37.473-42.702s18.301-38.635 18.301-65.359c0-26.725-6.1-48.802-18.301-66.231s-24.691-31.372-37.473-41.83l-357.298-357.298c-23.239-24.401-50.545-36.601-81.917-36.601s-58.678 12.2-81.917 36.601c-24.401 23.239-36.601 50.545-36.601 81.917z"
68+
],
69+
"attrs": [
70+
{}
71+
],
72+
"width": 643,
73+
"isMulticolor": false,
74+
"isMulticolor2": false,
75+
"grid": 0,
76+
"tags": [
77+
"arrow-right"
78+
]
79+
},
80+
"attrs": [
81+
{}
82+
],
83+
"properties": {
84+
"order": 78,
85+
"id": 11,
86+
"name": "arrow-right",
87+
"prevSize": 32,
88+
"code": 59650
89+
},
90+
"setIdx": 0,
91+
"setId": 1,
92+
"iconIdx": 2
93+
},
94+
{
95+
"icon": {
96+
"paths": [
97+
"M613.508 517.547l390.414-390.414-111.547-111.547-390.414 390.414-390.414-390.414-111.547 111.547 390.414 390.414-390.414 390.414 111.547 111.547 390.414-390.414 390.414 390.414 111.547-111.547-390.414-390.414z"
98+
],
99+
"attrs": [
100+
{}
101+
],
102+
"width": 1004,
103+
"isMulticolor": false,
104+
"isMulticolor2": false,
105+
"grid": 0,
106+
"tags": [
107+
"close"
108+
]
109+
},
110+
"attrs": [
111+
{}
112+
],
113+
"properties": {
114+
"order": 80,
115+
"id": 14,
116+
"name": "close",
117+
"prevSize": 32,
118+
"code": 59651
119+
},
120+
"setIdx": 0,
121+
"setId": 1,
122+
"iconIdx": 3
123+
}
124+
],
125+
"height": 1024,
126+
"metadata": {
127+
"name": "snapshot"
128+
},
129+
"preferences": {
130+
"showGlyphs": true,
131+
"showCodes": true,
132+
"showQuickUse": true,
133+
"showQuickUse2": true,
134+
"showSVGs": true,
135+
"fontPref": {
136+
"prefix": "i-",
137+
"metadata": {
138+
"fontFamily": "snapshot",
139+
"majorVersion": 1,
140+
"minorVersion": 0
141+
},
142+
"metrics": {
143+
"emSize": 1024,
144+
"baseline": 6.25,
145+
"whitespace": 50
146+
},
147+
"embed": false,
148+
"ie7": true,
149+
"noie8": false,
150+
"includeMetadata": true,
151+
"cssVars": true,
152+
"cssVarsFormat": "scss",
153+
"showSelector": true,
154+
"selector": "i",
155+
"classSelector": ".icon",
156+
"showMetrics": true,
157+
"showMetadata": false,
158+
"showVersion": false
159+
},
160+
"imagePref": {
161+
"prefix": "icon-",
162+
"png": true,
163+
"useClassSelector": true,
164+
"color": 0,
165+
"bgColor": 16777215,
166+
"classSelector": ".icon"
167+
},
168+
"historySize": 100,
169+
"gridSize": 16
170+
}
171+
}

0 commit comments

Comments
 (0)