mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-19 04:47:52 +00:00
230 lines
5.2 KiB
Plaintext
230 lines
5.2 KiB
Plaintext
###
|
|
### ---------------------------------------------------
|
|
### D E V I L B O X R U N - T I M E S E T T I N G S
|
|
### ---------------------------------------------------
|
|
###
|
|
### All the following settings are applied during
|
|
### $ docker-compose up
|
|
###
|
|
### No need to rebuild any dockers!
|
|
###
|
|
|
|
###
|
|
### Show all executed commands in each
|
|
### docker image during docker-compose up?
|
|
###
|
|
### 1: Yes
|
|
### 0: No
|
|
DEBUG_COMPOSE_ENTRYPOINT=1
|
|
|
|
|
|
|
|
###
|
|
### Relative or absolute path to the devilbox repository.
|
|
### (Used as a prefix for all mount paths)
|
|
### There is no need to change this.
|
|
###
|
|
### The only exception is for OSX users wanting to use NFS
|
|
### mounts instead of Filesystem mounts due to degraded performance
|
|
### on OSX.
|
|
###
|
|
DEVILBOX_PATH=.
|
|
|
|
|
|
###
|
|
### At what IP address should the docker services listen
|
|
### on the Host computer?
|
|
###
|
|
### The specified default should be fine for Linux and OSX (127.0.0.1:).
|
|
### If you are on windows, you will probably have to change
|
|
### it to the IP address of the docker machine.
|
|
###
|
|
### a.) Leave blank, to listen on all interfaces (no trailing color ':')
|
|
### LOCAL_LISTEN_ADDR=
|
|
### b.) If an IP is specified, note the trailing colon ':'
|
|
### LOCAL_LISTEN_ADDR=127.0.0.1:
|
|
###
|
|
LOCAL_LISTEN_ADDR=127.0.0.1:
|
|
|
|
|
|
################################################################################
|
|
###
|
|
### 1. Choose Images (Version)
|
|
###
|
|
################################################################################
|
|
|
|
###
|
|
### You can choose any combination of httpd, mysql, postgresql or php.
|
|
### Each of them are fully compatible between one another.
|
|
###
|
|
|
|
|
|
###
|
|
### 1.1 Choose HTTP Server Image
|
|
###
|
|
#HTTPD_SERVER=apache-2.2
|
|
HTTPD_SERVER=apache-2.4
|
|
#HTTPD_SERVER=nginx-stable
|
|
#HTTPD_SERVER=nginx-mainline
|
|
|
|
###
|
|
### 1.2 Choose MySQL Server Image
|
|
###
|
|
#MYSQL_SERVER=mysql-5.5
|
|
#MYSQL_SERVER=mysql-5.6
|
|
#MYSQL_SERVER=mysql-5.7
|
|
#MYSQL_SERVER=mariadb-5.5
|
|
#MYSQL_SERVER=mariadb-10.0
|
|
MYSQL_SERVER=mariadb-10.1
|
|
#MYSQL_SERVER=mariadb-10.2
|
|
|
|
###
|
|
### 1.3 Choose PostgreSQL Server Image
|
|
###
|
|
#POSTGRES_SERVER=9.1
|
|
#POSTGRES_SERVER=9.2
|
|
#POSTGRES_SERVER=9.3
|
|
#POSTGRES_SERVER=9.4
|
|
#POSTGRES_SERVER=9.5
|
|
POSTGRES_SERVER=9.6
|
|
|
|
###
|
|
### 1.4 Choose PHP Server Image
|
|
###
|
|
#PHP_SERVER=php-fpm-5.4
|
|
#PHP_SERVER=php-fpm-5.5
|
|
#PHP_SERVER=php-fpm-5.6
|
|
PHP_SERVER=php-fpm-7.0
|
|
#PHP_SERVER=php-fpm-7.1
|
|
#PHP_SERVER=hhvm-latest
|
|
|
|
|
|
###
|
|
### 1.5 Timezone for all dockers and service config files
|
|
###
|
|
TIMEZONE=Europe/Berlin
|
|
|
|
|
|
|
|
################################################################################
|
|
###
|
|
### 2. Host Mounts (Your computer)
|
|
###
|
|
################################################################################
|
|
|
|
###
|
|
### Local filesystem path to www projects.
|
|
###
|
|
HOST_PATH_TO_WWW_DOCROOTS=./data/www
|
|
|
|
###
|
|
### Local filesystem path to mysql/mariadb datadir.
|
|
###
|
|
### This can be an existing mysql data directory or empty.
|
|
### If it already is a mysql data directory with content,
|
|
### it will be mounted into the docker and used.
|
|
###
|
|
### If this directory is empty, a new mysql database will be
|
|
### created.
|
|
###
|
|
HOST_PATH_TO_MYSQL_DATADIR=./data/mysql57
|
|
|
|
###
|
|
### Local filesystem path to postgresql datadir.
|
|
###
|
|
### This can be an existing postgresql data directory or empty.
|
|
### If it already is a postgresql data directory with content,
|
|
### it will be mounted into the docker and used.
|
|
###
|
|
### If this directory is empty, a new postgresql database will be
|
|
### created.
|
|
###
|
|
HOST_PATH_TO_POSTGRES_DATADIR=./data/postgres96
|
|
|
|
|
|
|
|
################################################################################
|
|
###
|
|
### 3. HTTP Docker Settings
|
|
###
|
|
################################################################################
|
|
|
|
###
|
|
### Expose HTTPD Port to Host
|
|
###
|
|
HOST_PORT_HTTPD=80
|
|
|
|
|
|
################################################################################
|
|
###
|
|
### 4. MySQL Docker Settings
|
|
###
|
|
################################################################################
|
|
|
|
###
|
|
### MySQL root user password
|
|
###
|
|
### If $HOST_PATH_TO_MYSQL_DATADIR already contains an existing
|
|
### mysql datadir, enter the password for the existing mysql database
|
|
###
|
|
### If $HOST_PATH_TO_MYSQL_DATADIR is empty, choose a new password that
|
|
### will be applied
|
|
###
|
|
MYSQL_ROOT_PASSWORD=
|
|
|
|
###
|
|
### Custom MySQL Runtime Settings
|
|
###
|
|
MYSQL_GENERAL_LOG=1
|
|
|
|
###
|
|
### Expose MySQL Port to Host
|
|
###
|
|
HOST_PORT_MYSQL=3306
|
|
|
|
|
|
|
|
################################################################################
|
|
###
|
|
### 5. PostgreSQL Docker Settings
|
|
###
|
|
################################################################################
|
|
|
|
###
|
|
### PostgreSQL 'root' user name (usually postgres)
|
|
###
|
|
POSTGRES_USER=postgres
|
|
|
|
###
|
|
### PostgreSQL 'root' user password
|
|
###
|
|
POSTGRES_PASSWORD=
|
|
|
|
###
|
|
### Expose MySQL Port to Host
|
|
###
|
|
HOST_PORT_POSTGRES=5432
|
|
|
|
|
|
################################################################################
|
|
###
|
|
### 6. PHP-FPM Docker Settings
|
|
###
|
|
################################################################################
|
|
|
|
###
|
|
### Xdebug
|
|
###
|
|
|
|
# Enable/Disable Xdebug
|
|
PHP_XDEBUG_ENABLE=1
|
|
|
|
# Your local port (your computer host [not the docker])
|
|
# where your ide/editor is listening for xdebug connections.
|
|
PHP_XDEBUG_REMOTE_PORT=9000
|
|
|
|
# Your local IP address (your computer host [not the docker])
|
|
# where your ide/editor is listening for xdebug connections.
|
|
PHP_XDEBUG_REMOTE_HOST=172.20.10.2
|
|
## TODO: Check if it works by automatically sending it to the broadcast address
|