forked from Graffino/Graffino-Docker-Ninja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
80 lines (64 loc) · 1.67 KB
/
.env.example
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
# Docker
COMPOSE_PROJECT_NAME=example
COMPOSE_DOCKER_CLI_BUILD=1
DOCKER_BUILDKIT=1
DOCKER_HOSTNAME=example.graffino.dev
DOCKER_DOMAIN=*.example.graffino.dev
# MYSQL
DOCKER_DB_CONNECTION=mysql
DOCKER_DB_HOST=127.0.0.1
DOCKER_DB_PORT=3306
DOCKER_DB_NAME=example
DOCKER_DB_USER=example
DOCKER_DB_PASSWORD=admin
# Will be autogenerated if empty
DOCKER_DB_ROOT_PASSWORD=admin
DOCKER_DB_EXPOSED_PORT=8307
# NGINX
DOCKER_NGINX_PORT=80
DOCKER_NGINX_EXPOSED_PORT=8082
# PHP
DOCKER_PHP_PORT=9000
DOCKER_PHP_EXPOSED_PORT=9001
# (zip xdebug gd ...)
DOCKER_PHP_EXTENSIONS="gd mysqli pdo_mysql bcmath zip xdebug"
# (on|off)
DOCKER_PHP_DISPLAY_ERRORS=off
# (128M|1G|...)
DOCKER_PHP_UPLOAD_SIZE=32M
# (on|off)
DOCKER_PHP_ERRORS=off
# XDebug
# (off|debug)
DOCKER_PHP_XDEBUG_MODE=off
DOCKER_PHP_XDEBUG_HOST=localhost
DOCKER_PHP_XDEBUG_PORT=9003
DOCKER_PHP_XDEBUG_EXPOSED_PORT=9004
# COMPOSER
DOCKER_COMPOSER_GIT_TOKEN=XXX_COMPOSER_TOKEN_XXX
# TRAEFIK
TRAEFIK_DOMAIN=${DOCKER_DOMAIN}
TRAEFIK_HOSTNAME=${DOCKER_HOSTNAME}
TRAEFIK_USER=root
# Generate password
# echo $(htpasswd -nB user) | sed -e s/\\$/\\$\\$/g
TRAEFIK_PASSWORD=$$2y$$05$$PYH4G/wXmVq0IYS9NeUjSOo37kAO58fUTXCnSSfbp7vXFDyPm6Gr2 # adminpower
TRAEFIK_RESOLVER=graffino-route53
# WordPress
THEME_NAME=ninja
THEME_URL=https://${DOCKER_HOSTNAME}
DB_HOST=${COMPOSE_PROJECT_NAME}-mariadb
DB_PORT=${DOCKER_DB_PORT}
DB_NAME=${DOCKER_DB_NAME}
DB_USER=${DOCKER_DB_USER}
DB_PASSWORD=${DOCKER_DB_PASSWORD}
DB_MIGRATION=latest
PLUGIN_ACF_KEY=
PLUGIN_WPML_ID=
PLUGIN_WPML_KEY=
DEBUG=true
CACHE_BUSTING=yyyymmddhhmmss
REMOTE_USER=example.com
REMOTE_SERVER=connect.example.com
REMOTE_PATH=docroot/dist-wp/wp-content/uploads
STAGING_ARTIFACT_PATH=example.graffino.live