mirror of
https://github.com/cytopia/devilbox.git
synced 2025-01-19 03:06:30 +00:00
commit
bdf8eb7578
@ -13,8 +13,8 @@ error_reporting(-1);
|
|||||||
putenv('RES_OPTIONS=retrans:1 retry:1 timeout:1 attempts:1');
|
putenv('RES_OPTIONS=retrans:1 retry:1 timeout:1 attempts:1');
|
||||||
|
|
||||||
|
|
||||||
$DEVILBOX_VERSION = 'v1.1.0';
|
$DEVILBOX_VERSION = 'v1.2.0';
|
||||||
$DEVILBOX_DATE = '2019-11-24';
|
$DEVILBOX_DATE = '2019-12-01';
|
||||||
$DEVILBOX_API_PAGE = 'devilbox-api/status.json';
|
$DEVILBOX_API_PAGE = 'devilbox-api/status.json';
|
||||||
|
|
||||||
//
|
//
|
||||||
|
17
CHANGELOG.md
17
CHANGELOG.md
@ -4,10 +4,25 @@ Make sure to have a look at [UPDATING](https://github.com/cytopia/devilbox/blob/
|
|||||||
major versions.
|
major versions.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
|
||||||
|
## Release v1.2.0 (2019-12-01)
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
- [#622](https://github.com/cytopia/devilbox/issues/622) Certificate Generation Settings
|
||||||
|
- [#640](https://github.com/cytopia/devilbox/issues/640) Mac OS Catalina invalidates virtual host certificates
|
||||||
|
- [#592](https://github.com/cytopia/devilbox/issues/592) sqlsrv connection problem
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
- Added latest PHP-FPM images
|
||||||
|
- Added latest MySQL images
|
||||||
|
- Added latest Apache/Nginx images
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
- Made PHP 7.3 the default version
|
||||||
|
|
||||||
|
|
||||||
## Release v1.1.0 (2019-11-24)
|
## Release v1.1.0 (2019-11-24)
|
||||||
|
|
||||||
#### Fixed
|
#### Fixed
|
||||||
|
12
UPDATING.md
12
UPDATING.md
@ -3,6 +3,18 @@
|
|||||||
This document will hold all information on how to update between major versions.
|
This document will hold all information on how to update between major versions.
|
||||||
|
|
||||||
|
|
||||||
|
## Update from `v1.1.0` to `v1.2.0`
|
||||||
|
|
||||||
|
**PR:** https://github.com/cytopia/devilbox/pull/647
|
||||||
|
|
||||||
|
This release changes the way the SSL CA and certificates are generated.
|
||||||
|
Background here: https://support.apple.com/en-us/HT210176
|
||||||
|
|
||||||
|
In order to use the new CA, you will need to delete your current CA in `ca/devilbox-ca.*`.
|
||||||
|
A new one will be automatically generated if none is present. Additionally you will have to
|
||||||
|
import the CA again in your browser(s).
|
||||||
|
|
||||||
|
|
||||||
## Update from `v0.x.y` to `v1.x.y`
|
## Update from `v0.x.y` to `v1.x.y`
|
||||||
|
|
||||||
#### Docker Volumes
|
#### Docker Volumes
|
||||||
|
@ -26,7 +26,7 @@ ACCEPT_EULA=N
|
|||||||
###
|
###
|
||||||
### Where to retrieve the deb package
|
### Where to retrieve the deb package
|
||||||
###
|
###
|
||||||
MSODBC_URL="https://packages.microsoft.com/debian/8/prod/pool/main/m/msodbcsql17/"
|
MSODBC_URL="https://packages.microsoft.com/debian/9/prod/pool/main/m/msodbcsql17/"
|
||||||
|
|
||||||
|
|
||||||
###
|
###
|
||||||
|
@ -26,7 +26,7 @@ ACCEPT_EULA=N
|
|||||||
###
|
###
|
||||||
### Where to retrieve the deb package
|
### Where to retrieve the deb package
|
||||||
###
|
###
|
||||||
MSODBC_URL="https://packages.microsoft.com/debian/8/prod/pool/main/m/msodbcsql17/"
|
MSODBC_URL="https://packages.microsoft.com/debian/9/prod/pool/main/m/msodbcsql17/"
|
||||||
|
|
||||||
|
|
||||||
###
|
###
|
||||||
|
@ -26,7 +26,7 @@ ACCEPT_EULA=N
|
|||||||
###
|
###
|
||||||
### Where to retrieve the deb package
|
### Where to retrieve the deb package
|
||||||
###
|
###
|
||||||
MSODBC_URL="https://packages.microsoft.com/debian/8/prod/pool/main/m/msodbcsql17/"
|
MSODBC_URL="https://packages.microsoft.com/debian/9/prod/pool/main/m/msodbcsql17/"
|
||||||
|
|
||||||
|
|
||||||
###
|
###
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
---
|
||||||
##
|
##
|
||||||
## -------------------------
|
## -------------------------
|
||||||
## | D E V I L S T A C K |
|
## | D E V I L S T A C K |
|
||||||
@ -6,8 +7,8 @@
|
|||||||
## Local LAMP/LEMP stack
|
## Local LAMP/LEMP stack
|
||||||
##
|
##
|
||||||
##
|
##
|
||||||
## ${VARIABLE:-default} will evaluate to default if VARIABLE is unset or empty in the environment.
|
## ${VARIABLE:-default} will evaluate to default if VARIABLE is unset or empty.
|
||||||
## ${VARIABLE-default} will evaluate to default only if VARIABLE is unset in the environment.
|
## ${VARIABLE-default} will evaluate to default only if VARIABLE is unset.
|
||||||
##
|
##
|
||||||
##
|
##
|
||||||
## -- DO NOT EDIT THIS FILE --
|
## -- DO NOT EDIT THIS FILE --
|
||||||
@ -21,7 +22,6 @@
|
|||||||
## $ cp env-example .env
|
## $ cp env-example .env
|
||||||
##
|
##
|
||||||
|
|
||||||
|
|
||||||
version: '2.1'
|
version: '2.1'
|
||||||
|
|
||||||
|
|
||||||
@ -95,7 +95,7 @@ services:
|
|||||||
# PHP
|
# PHP
|
||||||
# ------------------------------------------------------------
|
# ------------------------------------------------------------
|
||||||
php:
|
php:
|
||||||
image: devilbox/php-fpm:${PHP_SERVER}-work-0.94
|
image: devilbox/php-fpm:${PHP_SERVER}-work-0.95
|
||||||
hostname: php
|
hostname: php
|
||||||
|
|
||||||
##
|
##
|
||||||
@ -210,7 +210,7 @@ services:
|
|||||||
# Web Server
|
# Web Server
|
||||||
# ------------------------------------------------------------
|
# ------------------------------------------------------------
|
||||||
httpd:
|
httpd:
|
||||||
image: devilbox/${HTTPD_SERVER}:0.30
|
image: devilbox/${HTTPD_SERVER}:0.31
|
||||||
hostname: httpd
|
hostname: httpd
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
@ -309,7 +309,7 @@ services:
|
|||||||
# MySQL Database
|
# MySQL Database
|
||||||
# ------------------------------------------------------------
|
# ------------------------------------------------------------
|
||||||
mysql:
|
mysql:
|
||||||
image: devilbox/mysql:${MYSQL_SERVER}-0.3
|
image: devilbox/mysql:${MYSQL_SERVER}-0.4
|
||||||
hostname: mysql
|
hostname: mysql
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
|
@ -261,8 +261,8 @@ DEVILBOX_VENDOR_PHPPGADMIN_AUTOLOGIN=1
|
|||||||
#PHP_SERVER=5.6
|
#PHP_SERVER=5.6
|
||||||
#PHP_SERVER=7.0
|
#PHP_SERVER=7.0
|
||||||
#PHP_SERVER=7.1
|
#PHP_SERVER=7.1
|
||||||
PHP_SERVER=7.2
|
#PHP_SERVER=7.2
|
||||||
#PHP_SERVER=7.3
|
PHP_SERVER=7.3
|
||||||
#PHP_SERVER=7.4
|
#PHP_SERVER=7.4
|
||||||
#PHP_SERVER=8.0
|
#PHP_SERVER=8.0
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user