Skip to content

Commit 2ca8dd4

Browse files
rfernandes-sugarcrmesimonetti
andauthoredMay 8, 2023
Sugar v13 - Support for PHP 8.2 (#1)
* Fixed copyright notice as it was mistakely not updated * Implemented Sugar 13 * Added prefix to the images * Fixed Prefix tag with Flavor * Removing latest from the build * Addd meta id * Fixed context * Updating the context * Adding multiple platforms * Moved platforms to QEMU * Add platforms to build and push * amd64/v4 not supported * Restricting to linux/amd64,linux/arm64 * Fixed ES volume and Removed prebuilt yml * Fixed ES and removed latest * Added missing images * Added Docker config for DH images --------- Co-authored-by: Enrico Simonetti <[email protected]>
1 parent cf05a8b commit 2ca8dd4

38 files changed

+751
-13
lines changed
 

‎.github/workflows/sugar13.yml

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
name: ci-v13
2+
on:
3+
push:
4+
tags:
5+
- 'v*'
6+
# branches: [ master, dev ]
7+
# pull_request:
8+
# branches: [ master ]
9+
jobs:
10+
tests:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
run: ['stacks/sugar13/php82-local-build.yml']
16+
steps:
17+
- run: sudo sysctl -w vm.max_map_count=262144
18+
- run: echo '127.0.0.1 docker.local' | sudo tee -a /etc/hosts
19+
- uses: actions/checkout@v1
20+
- run: cp -r ./tests/web_tests ./data/app/sugar/
21+
- run: ./tests/start.sh ${{ matrix.run }}
22+
- run: ./tests/web_tests.sh ${{ matrix.run }} 13.0 8.2
23+
- run: ./tests/stop.sh ${{ matrix.run }}
24+
25+
docker:
26+
strategy:
27+
fail-fast: false
28+
matrix:
29+
include:
30+
- dockercontext: ./images/php/82/apache
31+
image: sugarcrmdevelopers/sugardockerized
32+
prefix: php8.2-apache-
33+
- dockercontext: ./images/php/82/cron
34+
image: sugarcrmdevelopers/sugardockerized
35+
prefix: php8.2-cron-
36+
- dockercontext: ./images/mysql/8032
37+
image: sugarcrmdevelopers/sugardockerized
38+
prefix: mysql8.0.32-
39+
- dockercontext: ./images/permissions
40+
image: sugarcrmdevelopers/sugardockerized
41+
prefix: permissions-
42+
- dockercontext: ./images/testsmtp
43+
image: sugarcrmdevelopers/sugardockerized
44+
prefix: testsmtp-
45+
runs-on: ubuntu-latest
46+
steps:
47+
- name: Checkout repository
48+
uses: actions/checkout@v3
49+
- name: Set up QEMU
50+
uses: docker/setup-qemu-action@v2
51+
- name: Set up Docker Buildx
52+
uses: docker/setup-buildx-action@v2
53+
- name: Login to DockerHub
54+
uses: docker/login-action@v2
55+
with:
56+
username: ${{ secrets.DOCKERHUB_USERNAME }}
57+
password: ${{ secrets.DOCKERHUB_TOKEN }}
58+
- name: Extract metadata (tags, labels) for Docker
59+
id: meta
60+
uses: docker/metadata-action@v4
61+
with:
62+
images: ${{ matrix.image }}
63+
flavor: |
64+
latest=true
65+
prefix=${{ matrix.prefix }},onlatest=true
66+
67+
- name: Build and push
68+
uses: docker/build-push-action@v4
69+
with:
70+
context: ${{ matrix.dockercontext }}
71+
push: true
72+
platforms: 'linux/amd64,linux/arm64'
73+
tags: ${{ steps.meta.outputs.tags }}
74+
labels: ${{ steps.meta.outputs.labels }}

‎README.md

+12-11
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Sugar Dockerized [![Build Status](https://github.com/esimonetti/SugarDockerized/actions/workflows/sugar12.yml/badge.svg)](https://github.com/esimonetti/SugarDockerized/actions/workflows/sugar12.yml) ![Docker Pulls](https://img.shields.io/docker/pulls/esimonetti/sugardockerized.svg)
1+
# Sugar Dockerized [![Build Status](https://github.com/esimonetti/SugarDockerized/actions/workflows/sugar13.yml/badge.svg)](https://github.com/esimonetti/SugarDockerized/actions/workflows/sugar13.yml) ![Docker Pulls](https://img.shields.io/docker/pulls/esimonetti/sugardockerized.svg)
22

33
This repository will help you deploy a Docker based **development only** full stack for Sugar, meeting all the platform requirements for a different set of platform combinations.
44

@@ -21,11 +21,12 @@ If you find this software useful, please consider supporting the work that went
2121

2222
## Stacks available
2323
There are few stacks available, with in itself multiple platform combinations. You can read more about the specific stacks on the links below:
24+
* [Sugar 13](stacks/sugar13/README.md) - This stack is valid from version 13 for local developement also of Sugar Cloud only versions
2425
* [Sugar 12](stacks/sugar12/README.md) - This stack is valid from version 12 for local developement also of Sugar Cloud only versions
2526
* [Sugar 11](stacks/sugar11/README.md) - This stack is valid from version 11 for local developement also of Sugar Cloud only versions
2627

2728
You will find additional stacks within the [stack directory of the project](stacks).
28-
For most stacks, there are both the pre-built version (eg on Sugar 9: `./stacks/sugar9/php73.yml`) and a locally built version (eg on Sugar 9: `./stacks/sugar9/php73-local-build.yml`). The locally built version will be built run-time, and therefore those stacks will let you specify additional changes you might require to the docker images provided. Local builds will take much longer to deploy than pre-built ones.
29+
For most stacks, there are both the pre-built version (eg on Sugar 13: `./stacks/sugar13/php82.yml`) and a locally built version (eg on Sugar 13: `./stacks/sugar13/php82-local-build.yml`). The locally built version will be built run-time, and therefore those stacks will let you specify additional changes you might require to the docker images provided. Local builds will take much longer to deploy than pre-built ones.
2930

3031
### Types of stacks
3132
There are mainly three types of stack:
@@ -65,7 +66,7 @@ For details about the hostnames and credentials of each of the infrastructure co
6566
* Run the utility `build/build.sh`. Read more about [build/build.sh](https://github.com/esimonetti/SugarDockerized#buildbuildsh)
6667

6768
## Current version support
68-
The main stacks work with [Sugar version 9.0 and all its platform requirements](http://support.sugarcrm.com/Resources/Supported_Platforms/Sugar_9.0.x_Supported_Platforms/). Additional stacks are aligned with the platform requirements of version [8.0](http://support.sugarcrm.com/Resources/Supported_Platforms/Sugar_8.0.x_Supported_Platforms/), [7.9](http://support.sugarcrm.com/Resources/Supported_Platforms/Sugar_7.9.x_Supported_Platforms/) and stacks for Sugar Cloud only versions for local development only.
69+
The main stacks work with [Sugar version 13.0 and all its platform requirements](https://support.sugarcrm.com/Resources/Supported_Platforms/Sugar_13.0.x_Supported_Platforms/). Additional stacks are aligned with the platform requirements of version [12.x](https://support.sugarcrm.com/Resources/Supported_Platforms/Sugar_12.0.x_Supported_Platforms/), [11.x](https://support.sugarcrm.com/Resources/Supported_Platforms/Sugar_11.0.x_Supported_Platforms/) and stacks for Sugar Cloud only versions for local development only.
6970

7071
## System's details
7172

@@ -233,10 +234,10 @@ All directories and files within "data" are now owned by uid:gid 1000:1000
233234
It sets the correct ownership of the data directories
234235

235236
#### stack.sh
236-
```./utilities/stack.sh 80 down```
237+
```./utilities/stack.sh 13 down```
237238
```
238-
./utilities/stack.sh 80 down
239-
stacks/sugar8/php71.yml down
239+
./utilities/stack.sh 13 down
240+
stacks/sugar13/php82.yml down
240241
Stopping sugar-cron ... done
241242
Stopping sugar-web1 ... done
242243
Stopping sugar-redis ... done
@@ -248,10 +249,10 @@ Removing sugar-redis ... done
248249
Removing sugar-mysql ... done
249250
Removing sugar-permissions ... done
250251
Removing sugar-elasticsearch ... done
251-
Removing network sugar8_default
252+
Removing network sugar13_default
252253
No stopped containers
253254
```
254-
It helps to take the default stack for the sugar version passed as a parameter, up or down. It expects two parameters: version number (eg: 80, 90 etc) and up/down.
255+
It helps to take the default stack for the sugar version passed as a parameter, up or down. It expects two parameters: version number (eg: 12, 13 etc) and up/down.
255256
Have a look at the configuration file `./utilities/stacks.conf`, to know all the available stack combinations for the script. For some of the main stacks is available the "local" version of the stack, that allows local modification of settings and local docker image building.
256257

257258
#### runcli.sh
@@ -306,8 +307,8 @@ The following arguments should be adapted to target server:
306307

307308
#### installfromzip.sh
308309
This script requires a Sugar zip package, and the zip package needs to be on the host running SugarDockerized.
309-
If the installable zip package is located within the local directory `~/installable/SugarEnt-9.0.2.zip` the install command would be:
310-
```./utilities/installfromzip.sh ~/installable/SugarEnt-9.0.2.zip```
310+
If the installable zip package is located within the local directory `~/installable/SugarEnt-13.0.0.zip` the install command would be:
311+
```./utilities/installfromzip.sh ~/installable/SugarEnt-13.0.0.zip```
311312

312313
The script will perform all the steps required to silently install the software within the SugarDockerized stack currently running.
313314
To know more about additional custom configuration parameters and actions that can be used/performed during the silent installation refer to [script build/silentinstall.sh](https://github.com/esimonetti/SugarDockerized#buildsilentinstallsh).
@@ -316,7 +317,7 @@ To know more about additional custom configuration parameters and actions that c
316317
This script is most likely for Sugar Employees only.
317318
The script requires a clone of Sugar's git repository within `./data/app/Mango` with the `index.php` located within `./data/app/Mango/sugarcrm/index.php`.
318319
If we want to build the application version 10.0.0 Enterprise, the build command would be:
319-
```./utilities/build/build.sh ent 10.0.0```
320+
```./utilities/build/build.sh ent 13.0.0```
320321

321322
The script will perform all the steps necessary to build the current branch of the software and also perform its silent installation.
322323
To know more about additional custom configuration parameters and actions that can be used/performed during the silent installation refer to [script build/silentinstall.sh](https://github.com/esimonetti/SugarDockerized#buildsilentinstallsh).

‎images/mysql/8032/Dockerfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
FROM mysql:8.0.32
2+
MAINTAINER enrico.simonetti@gmail.com
3+
4+
COPY config/mysql/docker.cnf /etc/mysql/conf.d/docker.cnf
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[mysqld]
2+
skip-host-cache
3+
skip-name-resolve
4+
default-storage-engine=InnoDB
5+
innodb_file_per_table
6+
innodb_buffer_pool_size=256M
7+
character-set-server=utf8mb4
8+
collation-server=utf8mb4_general_ci
9+
optimizer-switch=block_nested_loop=off
10+
sql_mode="STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION"
11+
12+
[mysqldump]
13+
max-allowed-packet=128M

‎images/permissions/apps/sugarfixpermissions

+5
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,25 @@
22

33
DIR=/var/www/html
44

5+
echo Fixing ownership permissions
56
# Only change ownership on files that aren't currently owned by sugar:sugar
67
find ${DIR} -noleaf \( \! -user sugar -o \! -group sugar \) -print0 | xargs -0 -r chown sugar:sugar
78

9+
echo Fixing mode of files
10+
811
# Only change the mode of files/directories within sugar that are not 664/775. Exludes phpunit and sugarcrm
912
find ${DIR}/sugar -noleaf -type d \! -perm 775 -print0 2> /dev/null | xargs -0 -r chmod 775 2> /dev/null
1013
find ${DIR}/sugar -noleaf -type f \! -name phpunit \! -name sugarcrm \! -perm 664 -print0 2> /dev/null | xargs -0 -r chmod 664 2> /dev/null
1114

1215
# Directly set these to mode 700
1316
if [ -e ${DIR}/sugar/bin/sugarcrm ]
1417
then
18+
echo Fixing mode of sugarcrm
1519
chmod 700 ${DIR}/sugar/bin/sugarcrm
1620
fi
1721

1822
if [ -e ${DIR}/sugar/vendor/phpunit/phpunit/phpunit ]
1923
then
24+
echo Fixing mode of phpunit
2025
chmod 700 ${DIR}/sugar/vendor/phpunit/phpunit/phpunit
2126
fi

‎images/php/82/apache/Dockerfile

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
FROM php:8.2.2-apache
2+
3+
RUN apt-get update \
4+
&& apt-get install -y \
5+
graphviz \
6+
libpng-dev \
7+
libgmp-dev \
8+
libzip-dev \
9+
libc-client-dev \
10+
libkrb5-dev \
11+
libldap2-dev \
12+
libfreetype6-dev \
13+
libjpeg62-turbo-dev \
14+
libxml2-dev \
15+
git \
16+
--no-install-recommends
17+
18+
RUN apt-get clean \
19+
&& apt-get -y autoremove \
20+
&& rm -rf /var/lib/apt/lists/*
21+
22+
RUN adduser sugar --disabled-password --disabled-login --gecos ""
23+
24+
RUN echo "<?php \$_SERVER['SERVER_SOFTWARE'] = 'SugarDockerized';" > /usr/local/php/prepend.php
25+
26+
COPY config/apache2/mods-available/deflate.conf /etc/apache2/mods-available/deflate.conf
27+
COPY config/apache2/sites-available/sugar.conf /etc/apache2/sites-available/sugar.conf
28+
29+
RUN set -ex \
30+
&& . "/etc/apache2/envvars" \
31+
&& ln -sfT /dev/stderr "$APACHE_LOG_DIR/error.log" \
32+
&& ln -sfT /dev/stdout "$APACHE_LOG_DIR/access.log" \
33+
&& ln -sfT /dev/stdout "$APACHE_LOG_DIR/other_vhosts_access.log" \
34+
&& a2enmod headers expires deflate rewrite \
35+
&& sed -i "s#Timeout .*#Timeout 600#" /etc/apache2/apache2.conf \
36+
&& a2dissite 000-default \
37+
&& a2ensite sugar
38+
39+
RUN docker-php-ext-install mysqli \
40+
&& docker-php-ext-install bcmath \
41+
&& docker-php-ext-install gd \
42+
&& docker-php-ext-install gmp \
43+
&& docker-php-ext-configure imap --with-kerberos --with-imap-ssl \
44+
&& docker-php-ext-install imap \
45+
&& docker-php-ext-install zip \
46+
&& docker-php-ext-install ldap \
47+
&& pecl install xdebug-3.2.0 \
48+
&& pecl install redis \
49+
&& docker-php-ext-enable redis \
50+
&& docker-php-ext-install soap
51+
52+
RUN docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/ \
53+
&& docker-php-ext-install -j$(nproc) gd
54+
55+
# enabled by default, it can be disabled locally
56+
COPY config/php/mods-available/xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini
57+
COPY config/php/mods-available/opcache.ini /usr/local/etc/php/conf.d/opcache.ini
58+
COPY config/php/opcache-blacklist /usr/local/etc/php/opcache-blacklist
59+
60+
RUN git clone https://github.com/tideways/php-xhprof-extension.git tideways \
61+
&& cd tideways \
62+
&& /usr/local/bin/phpize \
63+
&& ./configure --with-php-config=/usr/local/bin/php-config \
64+
&& make \
65+
&& make install
66+
67+
COPY config/php/mods-available/tideways.ini /usr/local/etc/php/conf.d/tideways.ini
68+
69+
RUN git clone https://github.com/longxinH/xhprof.git xhprof \
70+
&& cd xhprof/extension/ \
71+
&& /usr/local/bin/phpize \
72+
&& ./configure --with-php-config=/usr/local/bin/php-config \
73+
&& make \
74+
&& make install
75+
76+
COPY config/php/mods-available/xhprof.ini /usr/local/etc/php/conf.d/xhprof.ini
77+
78+
WORKDIR "/var/www/html/sugar"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
AddOutputFilterByType DEFLATE application/json application/javascript text/css
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<VirtualHost *:80>
2+
ServerAdmin webmaster@localhost
3+
ServerName localhost
4+
5+
DocumentRoot /var/www/html
6+
7+
ErrorLog ${APACHE_LOG_DIR}/error.log
8+
CustomLog ${APACHE_LOG_DIR}/access.log combined
9+
10+
<Directory /var/www/html>
11+
Options Indexes FollowSymLinks
12+
AllowOverride All
13+
</Directory>
14+
</VirtualHost>
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
date.timezone = GMT
2+
error_reporting = E_ALL \& ~E_NOTICE \& ~E_STRICT \& ~E_DEPRECATED
3+
error_log = /var/log/apache2/error.log
4+
log_errors = On
5+
display_errors = Off
6+
memory_limit = 1024M
7+
post_max_size = 100M
8+
upload_max_filesize = 100M
9+
max_execution_time = 600
10+
max_input_time = 600
11+
realpath_cache_size = 512k
12+
realpath_cache_ttl = 600
13+
mbstring.func_overload = 0
14+
session.use_cookies = 1
15+
session.cookie_httponly = 1
16+
session.use_trans_sid = 0
17+
session.save_handler = redis
18+
session.save_path = "tcp://sugar-redis:6379"
19+
auto_prepend_file = "/usr/local/php/prepend.php"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
; configuration for php ZendOpcache module
2+
; priority=10
3+
zend_extension=opcache.so
4+
opcache.blacklist_filename="/usr/local/etc/php/opcache-blacklist"
5+
opcache.consistency_checks=0
6+
opcache.dups_fix=0
7+
opcache.enable=1
8+
opcache.enable_cli=0
9+
opcache.enable_file_override=0
10+
opcache.error_log=""
11+
opcache.fast_shutdown=1
12+
opcache.file_update_protection=2
13+
opcache.force_restart_timeout=180
14+
opcache.inherited_hack=1
15+
opcache.interned_strings_buffer=8
16+
opcache.load_comments=1
17+
opcache.log_verbosity_level=1
18+
opcache.max_accelerated_files=4000
19+
opcache.max_file_size=0
20+
opcache.max_wasted_percentage=5
21+
opcache.memory_consumption=256
22+
opcache.optimization_level=0x7FFFBFFF
23+
opcache.preferred_memory_model=""
24+
opcache.protect_memory=0
25+
opcache.restrict_api=""
26+
opcache.revalidate_freq=2
27+
opcache.revalidate_path=0
28+
opcache.save_comments=1
29+
opcache.use_cwd=1
30+
opcache.validate_timestamps=1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
extension=redis.so
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
extension=tideways_xhprof.so
2+
tideways_xhprof.auto_prepend_library=0
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
;zend_extension=xdebug.so
2+
xdebug.max_nesting_level=500
3+
xdebug.profiler_enable=0
4+
5+
; enable remote debug
6+
; Below are xdebug2 options. Use default xdebug3
7+
;xdebug.remote_enable=1
8+
;xdebug.remote_port=9000
9+
;xdebug.remote_host=10.10.10.1
10+
;xdebug.remote_autostart = 1
11+
xdebug.client_host=10.10.10.1
12+
xdebug.client_port=9003
13+
xdebug.idekey=XDEBUG_SESSION
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
extension = xhprof.so
2+
xhprof.output_dir = /tmp/xhprof
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/var/www/html/sugar/config_override.php
2+
/var/www/html/sugar/cache/modules/Teams/TeamSetCache.php
3+
/var/www/html/sugar/cache/modules/Teams/TeamSetMD5Cache.php
4+
/var/www/html/sugar/cache/class_map.php
5+
/var/www/html/sugar/cache/smarty/templates_c/*
6+
/var/www/html/sugar/custom/modules/unified_search_modules_display.php
7+
/var/www/html/sugar/custom/modulebuilder/*

‎images/php/82/cron/Dockerfile

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
FROM php:8.2.2-cli
2+
3+
RUN apt-get update \
4+
&& apt-get install -y \
5+
sudo \
6+
vim \
7+
unzip \
8+
libpng-dev \
9+
libgmp-dev \
10+
libzip-dev \
11+
libc-client-dev \
12+
libkrb5-dev \
13+
libldap2-dev \
14+
libfreetype6-dev \
15+
libjpeg62-turbo-dev \
16+
libxml2-dev \
17+
git \
18+
--no-install-recommends
19+
20+
RUN apt-get clean \
21+
&& apt-get -y autoremove \
22+
&& rm -rf /var/lib/apt/lists/*
23+
24+
RUN adduser sugar --disabled-password --disabled-login --gecos "" \
25+
&& echo "sugar ALL=NOPASSWD: ALL" > /etc/sudoers.d/sugar
26+
27+
RUN echo "<?php \$_SERVER['SERVER_SOFTWARE'] = 'SugarDockerized';" > /usr/local/php/prepend.php
28+
29+
RUN docker-php-ext-install mysqli \
30+
&& docker-php-ext-install bcmath \
31+
&& docker-php-ext-configure gd --enable-gd --with-freetype --with-jpeg \
32+
&& docker-php-ext-install gd \
33+
&& docker-php-ext-install gmp \
34+
&& docker-php-ext-configure imap --with-kerberos --with-imap-ssl \
35+
&& docker-php-ext-install imap \
36+
&& docker-php-ext-install zip \
37+
&& docker-php-ext-install ldap \
38+
&& docker-php-ext-install ldap \
39+
&& pecl install xdebug-3.2.0 \
40+
&& pecl install redis \
41+
&& docker-php-ext-enable redis \
42+
&& docker-php-ext-install soap
43+
44+
RUN docker-php-ext-install -j$(nproc) gd
45+
46+
# disable by default, it can be enabled locally
47+
#COPY config/php/mods-available/xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini
48+
COPY config/php/mods-available/opcache.ini /usr/local/etc/php/conf.d/opcache.ini
49+
COPY config/php/opcache-blacklist /usr/local/etc/php/opcache-blacklist
50+
51+
RUN git clone https://github.com/tideways/php-xhprof-extension.git tideways \
52+
&& cd tideways \
53+
&& /usr/local/bin/phpize \
54+
&& ./configure --with-php-config=/usr/local/bin/php-config \
55+
&& make \
56+
&& make install
57+
58+
COPY config/php/mods-available/tideways.ini /usr/local/etc/php/conf.d/tideways.ini
59+
60+
RUN git clone https://github.com/longxinH/xhprof.git xhprof \
61+
&& cd xhprof/extension/ \
62+
&& /usr/local/bin/phpize \
63+
&& ./configure --with-php-config=/usr/local/bin/php-config \
64+
&& make \
65+
&& make install
66+
67+
COPY config/php/mods-available/xhprof.ini /usr/local/etc/php/conf.d/xhprof.ini
68+
69+
RUN curl -sS http://getcomposer.org/installer | php \
70+
&& mv composer.phar /usr/local/bin/composer
71+
72+
COPY apps/sugarcron /usr/local/bin/sugarcron
73+
RUN chmod +x /usr/local/bin/sugarcron
74+
75+
WORKDIR "/var/www/html/sugar"
76+
USER sugar
77+
78+
CMD ["/usr/local/bin/sugarcron"]

‎images/php/82/cron/apps/sugarcron

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#!/usr/local/bin/php
2+
<?php
3+
4+
while (true) {
5+
6+
$folder = '/var/www/html/sugar';
7+
$cron_pause = 'cron_pause';
8+
$cron = 'cron.php';
9+
10+
if (is_dir($folder) && !file_exists($folder . '/' . $cron_pause) && file_exists($folder . '/' . $cron) && is_readable($folder . '/' . $cron)) {
11+
echo '[' . date('Y-m-d H:i:s') . '] sugar cron start' . PHP_EOL;
12+
$output = array();
13+
exec('cd ' . $folder . ' && php -f ' . $cron . ' && cd /', $output);
14+
if (!empty($output)) {
15+
echo implode(PHP_EOL, $output).PHP_EOL;
16+
}
17+
echo '[' . date('Y-m-d H:i:s') . '] sugar cron end' . PHP_EOL;
18+
if (file_exists($folder . '/' . $cron_pause)) {
19+
echo 'Pausing cron now. To unpause, remove ' . $folder . $cron_pause . PHP_EOL;
20+
}
21+
}
22+
23+
// snooze a minute
24+
sleep(60);
25+
}
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
date.timezone = GMT
2+
error_reporting = E_ALL \& ~E_WARNING \& ~E_NOTICE \& ~E_STRICT \& ~E_DEPRECATED
3+
error_log = /proc/1/fd/1
4+
log_errors = On
5+
display_errors = Off
6+
memory_limit = -1
7+
max_execution_time = -1
8+
realpath_cache_size = 512k
9+
realpath_cache_ttl = 600
10+
mbstring.func_overload = 0
11+
auto_prepend_file = "/usr/local/php/prepend.php"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
; configuration for php ZendOpcache module
2+
; priority=10
3+
zend_extension=opcache.so
4+
opcache.blacklist_filename="/usr/local/etc/php/opcache-blacklist"
5+
opcache.consistency_checks=0
6+
opcache.dups_fix=0
7+
opcache.enable=1
8+
opcache.enable_cli=1
9+
opcache.enable_file_override=0
10+
opcache.error_log=""
11+
opcache.fast_shutdown=1
12+
opcache.file_update_protection=2
13+
opcache.force_restart_timeout=180
14+
opcache.inherited_hack=1
15+
opcache.interned_strings_buffer=8
16+
opcache.load_comments=1
17+
opcache.log_verbosity_level=1
18+
opcache.max_accelerated_files=4000
19+
opcache.max_file_size=0
20+
opcache.max_wasted_percentage=5
21+
opcache.memory_consumption=256
22+
opcache.optimization_level=0x7FFFBFFF
23+
opcache.preferred_memory_model=""
24+
opcache.protect_memory=0
25+
opcache.restrict_api=""
26+
opcache.revalidate_freq=2
27+
opcache.revalidate_path=0
28+
opcache.save_comments=1
29+
opcache.use_cwd=1
30+
opcache.validate_timestamps=1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
extension=redis.so
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
extension=tideways_xhprof.so
2+
tideways_xhprof.auto_prepend_library=0
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
zend_extension=xdebug.so
2+
xdebug.max_nesting_level=500
3+
xdebug.profiler_enable=0
4+
5+
; enable remote debug for client
6+
xdebug.remote_enable=1
7+
xdebug.remote_port=9000
8+
xdebug.remote_host=10.10.10.1
9+
xdebug.remote_autostart = 1
10+
xdebug.idekey=XDEBUG_SESSION
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
extension = xhprof.so
2+
xhprof.output_dir = /tmp/xhprof
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/var/www/html/sugar/config_override.php
2+
/var/www/html/sugar/cache/modules/Teams/TeamSetCache.php
3+
/var/www/html/sugar/cache/modules/Teams/TeamSetMD5Cache.php
4+
/var/www/html/sugar/cache/class_map.php
5+
/var/www/html/sugar/cache/smarty/templates_c/*
6+
/var/www/html/sugar/custom/modules/unified_search_modules_display.php
7+
/var/www/html/sugar/custom/modulebuilder/*

‎stacks/sugar13/README.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Sugar Dockerized Sugar version 13
2+
This repository will help you deploy a Docker based development full stack for Sugar version 13
3+
4+
## Stacks available
5+
* php82-local-build.yml - Main reference stack - Single web server
6+
* PHP - 8.2.2
7+
* Apache - 2.4
8+
* MySQL - 8.0.32
9+
* Elasticsearch - 8.4.3
10+
* Redis - latest

‎stacks/sugar13/php82-local-build.yml

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
version: '3'
2+
3+
services:
4+
web1:
5+
container_name: "sugar-web1"
6+
image: sugar_php82_web
7+
build: ../../images/php/82/apache
8+
ports:
9+
- "80:80"
10+
extra_hosts:
11+
- "docker.local:127.0.0.1"
12+
environment:
13+
- "APACHE_RUN_USER=sugar"
14+
- "APACHE_RUN_GROUP=sugar"
15+
volumes:
16+
- ../../data/app:/var/www/html
17+
- ../../images/php/82/apache/config/php/docker.ini:/usr/local/etc/php/conf.d/docker.ini
18+
depends_on:
19+
- mysql
20+
- elasticsearch
21+
- redis
22+
- permissions
23+
links:
24+
- mysql
25+
- elasticsearch
26+
- redis
27+
cron:
28+
container_name: "sugar-cron"
29+
image: sugar_php82_cron
30+
build: ../../images/php/82/cron
31+
volumes:
32+
- ../../data/app:/var/www/html
33+
- ../../images/php/82/cron/config/php/docker.ini:/usr/local/etc/php/conf.d/docker.ini
34+
depends_on:
35+
- mysql
36+
- elasticsearch
37+
- redis
38+
- permissions
39+
links:
40+
- mysql
41+
- elasticsearch
42+
- redis
43+
mysql:
44+
container_name: "sugar-mysql"
45+
image: sugar_mysql
46+
build: ../../images/mysql/8032
47+
ports:
48+
- "3336:3306"
49+
volumes:
50+
- ../../data/mysql/8032:/var/lib/mysql
51+
environment:
52+
- MYSQL_ROOT_PASSWORD=root
53+
- MYSQL_USER=sugar
54+
- MYSQL_PASSWORD=sugar
55+
elasticsearch:
56+
image: elasticsearch:8.4.3
57+
container_name: "sugar-elasticsearch"
58+
ports:
59+
- 9200:9200
60+
- 9300:9300
61+
volumes:
62+
- es-data01:/usr/share/elasticsearch/data
63+
environment:
64+
- node.name=sugar1
65+
- cluster.name=sugarcrm13
66+
- discovery.type=single-node
67+
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
68+
- xpack.security.enabled=false
69+
ulimits:
70+
memlock:
71+
soft: -1
72+
hard: -1
73+
nofile:
74+
soft: 65536
75+
hard: 65536
76+
redis:
77+
container_name: "sugar-redis"
78+
image: redis:latest
79+
volumes:
80+
- ../../data/redis:/data
81+
permissions:
82+
container_name: "sugar-permissions"
83+
image: sugar_permissions
84+
build: ../../images/permissions
85+
volumes:
86+
- ../../data/app:/var/www/html
87+
testsmtp:
88+
container_name: "sugar-smtp"
89+
image: sugar_testsmtp
90+
build: ../../images/testsmtp
91+
92+
volumes:
93+
es-data01:
94+
driver: local

‎stacks/sugar13/php82.yml

+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
version: '3'
2+
3+
services:
4+
web1:
5+
container_name: "sugar-web1"
6+
image: sugarcrmdevelopers/sugardockerized:php8.2-apache-latest
7+
ports:
8+
- "80:80"
9+
extra_hosts:
10+
- "docker.local:127.0.0.1"
11+
environment:
12+
- "APACHE_RUN_USER=sugar"
13+
- "APACHE_RUN_GROUP=sugar"
14+
volumes:
15+
- ../../data/app:/var/www/html
16+
- ../../images/php/82/apache/config/php/docker.ini:/usr/local/etc/php/conf.d/docker.ini
17+
depends_on:
18+
- mysql
19+
- elasticsearch
20+
- redis
21+
- permissions
22+
- testsmtp
23+
links:
24+
- mysql
25+
- elasticsearch
26+
- redis
27+
- testsmtp
28+
cron:
29+
container_name: "sugar-cron"
30+
image: sugarcrmdevelopers/sugardockerized:php8.2-cron-latest
31+
volumes:
32+
- ../../data/app:/var/www/html
33+
- ../../images/php/82/apache/config/php/docker.ini:/usr/local/etc/php/conf.d/docker.ini
34+
depends_on:
35+
- mysql
36+
- elasticsearch
37+
- redis
38+
- permissions
39+
- testsmtp
40+
links:
41+
- mysql
42+
- elasticsearch
43+
- redis
44+
- testsmtp
45+
mysql:
46+
container_name: "sugar-mysql"
47+
image: sugarcrmdevelopers/sugardockerized:mysql8.0.32-latest
48+
ports:
49+
- "3306:3306"
50+
volumes:
51+
- ../../data/mysql/8032:/var/lib/mysql
52+
environment:
53+
- MYSQL_ROOT_PASSWORD=root
54+
- MYSQL_USER=sugar
55+
- MYSQL_PASSWORD=sugar
56+
elasticsearch:
57+
image: elasticsearch:8.4.3
58+
container_name: "sugar-elasticsearch"
59+
ports:
60+
- 9200:9200
61+
- 9300:9300
62+
volumes:
63+
- es-data01:/usr/share/elasticsearch/data
64+
environment:
65+
- node.name=sugar1
66+
- cluster.name=sugarcrm13
67+
- discovery.type=single-node
68+
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
69+
- xpack.security.enabled=false
70+
ulimits:
71+
memlock:
72+
soft: -1
73+
hard: -1
74+
nofile:
75+
soft: 65536
76+
hard: 65536
77+
redis:
78+
container_name: "sugar-redis"
79+
image: redis:latest
80+
volumes:
81+
- ../../data/redis:/data
82+
permissions:
83+
container_name: "sugar-permissions"
84+
image: sugarcrmdevelopers/sugardockerized:permissions-latest
85+
volumes:
86+
- ../../data/app:/var/www/html
87+
testsmtp:
88+
container_name: "sugar-smtp"
89+
image: sugarcrmdevelopers/sugardockerized:testsmtp-latest
90+
91+
volumes:
92+
es-data01:
93+
driver: local

‎tests/web_tests/8.2/composer.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"require": {
3+
"guzzlehttp/guzzle": "6.5.6"
4+
}
5+
}

‎tests/web_tests/8.2/test_1.php

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?php
2+
echo 'ok';

‎tests/web_tests/8.2/test_2.php

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
session_start();
3+
$ok = 'ok';
4+
5+
$_SESSION[$ok] = $ok;
6+
7+
if ($_SESSION[$ok] == $ok) {
8+
echo $ok;
9+
}

‎tests/web_tests/8.2/test_3.php

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
$ok = 'ok';
3+
4+
$redis = new Redis();
5+
$redis->connect('sugar-redis', 6379);
6+
$redis->set($ok, $ok);
7+
8+
if ($redis->get($ok) == $ok) {
9+
echo $ok;
10+
}

‎tests/web_tests/8.2/test_4.php

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
$ok = 'ok';
3+
4+
$conn = new mysqli('sugar-mysql', 'root', 'root');
5+
if ($conn->connect_error) {
6+
die('Connection failed: ' . $conn->connect_error);
7+
}
8+
9+
$sql = 'CREATE DATABASE dockertest';
10+
if ($conn->query($sql) === TRUE) {
11+
$conn->select_db('dockertest');
12+
$sql = 'CREATE TABLE test ( id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255) NOT NULL )';
13+
if ($conn->query($sql) === TRUE) {
14+
echo $ok;
15+
}
16+
$sql = 'DROP DATABASE dockertest';
17+
$conn->query($sql);
18+
}
19+
20+
$conn->close();

‎tests/web_tests/8.2/test_5.php

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<?php
2+
$ok = 'ok';
3+
$url = 'http://sugar-elasticsearch:9200/';
4+
require 'vendor/autoload.php';
5+
6+
use GuzzleHttp\Client;
7+
8+
$client = new Client(
9+
array(
10+
'timeout' => 4.0,
11+
'headers' => array(
12+
'Content-Type' => 'application/json',
13+
'Accept' => 'application/json',
14+
)
15+
)
16+
);
17+
18+
$error = true;
19+
20+
$response = $client->get($url . '_stats');
21+
if ($response->getStatusCode() == 200) {
22+
23+
$response = $client->put($url . 'testbucket');
24+
if ($response->getStatusCode() == 200) {
25+
$response = $client->put(
26+
$url . 'testbucket/_doc/enrico?refresh=true',
27+
array (
28+
//'debug' => TRUE,
29+
'json' => array(
30+
'name' => 'Enrico Simonetti'
31+
)
32+
)
33+
);
34+
if ($response->getStatusCode() == 201) {
35+
$response = $client->get(
36+
$url . 'testbucket/_search',
37+
array(
38+
//'debug' => TRUE,
39+
'query' => array(
40+
'q' => 'simonetti'
41+
)
42+
)
43+
);
44+
$decoded = json_decode($response->getBody(), true);
45+
if (!empty($decoded['hits'])
46+
&& $decoded['hits']['total']['value'] === 1
47+
&& $decoded['hits']['hits']['0']['_id'] === 'enrico') {
48+
// expected result found
49+
$error = false;
50+
}
51+
}
52+
53+
$response = $client->delete($url . 'testbucket');
54+
}
55+
}
56+
57+
if (!$error) {
58+
echo $ok;
59+
}

‎tests/web_tests/8.2/test_6.php

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
3+
if ($_SERVER['SERVER_SOFTWARE'] === 'SugarDockerized') echo 'ok';

‎utilities/build/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fi
1111

1212
if [ -z $2 ]
1313
then
14-
echo Provide as second parameter the version number \(e.g.: 9.0.1 or 9.2.0 or 9.3.0\)
14+
echo Provide as second parameter the version number \(e.g.: 13.0.0 or 12.3.0 or 12.0.2\)
1515
exit 1
1616
fi
1717

‎utilities/installfromzip.sh

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ else
2626
exit 1
2727
fi
2828

29+
echo "Cleaning up previous install (./data/app/sugar) if any, please wait..."
2930
# remove current sugar dir
3031
if [ -d './data/app/sugar' ]
3132
then

‎utilities/stack.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cd $REPO
1313

1414
if [ -z $1 ] || [ -z $2 ]
1515
then
16-
echo Provide two parameters. The sugar stack version keyword for \(eg: 80, 90\) and the action \(up, down\). The stacks keywords available can be found below:
16+
echo Provide two parameters. The sugar stack version keyword for \(eg: 13, 12\) and the action \(up, down\). The stacks keywords available can be found below:
1717
for index in "${stacks[@]}" ; do
1818
KEY="${index%%::*}"
1919
echo $KEY

‎utilities/stacks.conf

+2
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@ stacks=(
1919
'11-local::stacks/sugar11/php74-local-build.yml'
2020
'12::stacks/sugar12/php80.yml'
2121
'12-local::stacks/sugar12/php80-local-build.yml'
22+
'13::stacks/sugar13/php82.yml'
23+
'13-local::stacks/sugar13/php82-local-build.yml'
2224
)

0 commit comments

Comments
 (0)
Please sign in to comment.