-
Notifications
You must be signed in to change notification settings - Fork 1
/
env-example-prod
100 lines (66 loc) · 3.37 KB
/
env-example-prod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
###########################################################
###################### General Setup ######################
###########################################################
### Paths #################################################
# Point to the path of your applications code on your host
APP_CODE_PATH_HOST=./site
# Point to where the `APP_CODE_PATH_HOST` should be in the container. You may add flags to the path `:cached`, `:delegated`. When using Docker Sync add `:nocopy`
APP_CODE_PATH_CONTAINER=/var/www:cached
# Choose storage path on your machine. For all storage systems
DATA_PATH_HOST=./db_data
### Drivers ################################################
# All volumes driver
VOLUMES_DRIVER=local
# All Networks driver
NETWORKS_DRIVER=bridge
### Docker compose files ##################################
# Select which docker-compose files to include. If using docker-sync append `:docker-compose.sync.yml` at the end
#COMPOSE_FILE=docker-compose.yml
COMPOSE_FILE=docker-compose-prod.yml
# Change the separator from : to ; on Windows
COMPOSE_PATH_SEPARATOR=:
### PHP Version ###########################################
# Select a PHP version of the Workspace and PHP-FPM containers (Does not apply to HHVM). Accepted values: 7.4 - 7.3 - 7.2 - 7.1 - 7.0 - 5.6 - 5.5
# 移到下方集中設定
# PHP_VERSION=7.0
### PHP Interpreter #######################################
# Select the PHP Interpreter. Accepted values: hhvm - php-fpm
PHP_INTERPRETER=php-fpm
### Docker Host IP ########################################
# Enter your Docker Host IP (will be appended to /etc/hosts). Default is `10.0.75.1`
DOCKER_HOST_IP=10.0.75.1
### Remote Interpreter ####################################
# Choose a Remote Interpreter entry matching name. Default is `laradock`
PHP_IDE_CONFIG=serverName=laradock
### Windows Path ##########################################
# A fix for Windows users, to ensure the application path works
COMPOSE_CONVERT_WINDOWS_PATHS=1
### Environment ###########################################
# If you need to change the sources (i.e. to China), set CHANGE_SOURCE to true
CHANGE_SOURCE=false
### Docker Sync ###########################################
# If you are using Docker Sync. For `osx` use 'native_osx', for `windows` use 'unison', for `linux` docker-sync is not required
DOCKER_SYNC_STRATEGY=native_osx
###########################################################
################ Containers Customization #################
###########################################################
### For 資料庫時區設定 ###############################################
WORKSPACE_TIMEZONE=Asia/Taipei
### PHP_FPM ###############################################
# 可用之值: 7.4 - 7.3 - 7.2 - 7.0
PHP_VERSION=7.4
# 可用之值可至 https://hub.docker.com/r/t301000/xoops.easy.dock.php-fpm/tags 查詢
PHP_TAG=7.4.5
### CADDY #################################################
# 可用之值可至 https://hub.docker.com/r/t301000/xoops.easy.dock.caddy/tags 查詢
CADDY_TAG=1.0.3
CADDY_HOST_HTTP_PORT=80
CADDY_HOST_HTTPS_PORT=443
CADDY_HOST_LOG_PATH=./logs/caddy
CADDY_CUSTOM_CADDYFILE=./caddy/Caddyfile
### MYSQL #################################################
# 可用之值可至 https://hub.docker.com/r/t301000/xoops.easy.dock.mysql/tags 查詢
MYSQL_TAG=8.0.11
MYSQL_ENTRYPOINT_INITDB=./mysql/docker-entrypoint-initdb.d
# MYSQL_PORT=3306
# 以下由 setup-env.sh 設定