Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding PHP 7.3 image to allowed images. #175

Merged
merged 3 commits into from
Feb 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Probo Changelog

## 4.5.0
- Feb 5 2020
- Add PHP 7.3 to allowed images. (https://github.com/ProboCI/probo/pull/175)
- Add PHP 7.4 to allowed images. (https://github.com/ProboCI/probo/pull/175)

## 4.4.1
- Feb 4 2020
- Fix issues with mysql and varnish services starting properly in LAMP and Drupal plugins. (https://github.com/ProboCI/probo/pull/174)
Expand Down
38 changes: 38 additions & 0 deletions defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,44 @@ images:
command: 'service varnish start'
php_log:
command: 'tail -F /var/log/php/error.log'
'proboci/ubuntu:18.04-php7.3':
services:
cleanapache:
command: 'rm /var/run/apache2/apache2.pid'
apache:
command: '/usr/sbin/apache2ctl -D FOREGROUND'
port: 80
memcached:
command: memcached -u memcache
mysql:
command: 'mysqld_safe'
redis:
command: 'redis-server'
solr:
command: '/opt/solr/bin/solr start -f -force'
varnish:
command: 'service varnish start'
php_log:
command: 'tail -F /var/log/php/error.log'
'proboci/ubuntu:18.04-php7.4':
services:
cleanapache:
command: 'rm /var/run/apache2/apache2.pid'
apache:
command: '/usr/sbin/apache2ctl -D FOREGROUND'
port: 80
memcached:
command: memcached -u memcache
mysql:
command: 'mysqld_safe'
redis:
command: 'redis-server'
solr:
command: '/opt/solr/bin/solr start -f -force'
varnish:
command: 'service varnish start'
php_log:
command: 'tail -F /var/log/php/error.log'
dataDir: './container-manager-data'
# Volumes to mount into created containers.
binds: []
Expand Down