-
Notifications
You must be signed in to change notification settings - Fork 3
/
.env
38 lines (33 loc) · 848 Bytes
/
.env
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
# env - PROD or DEV
ENV=PROD
# wordpress
WORDPRESS_IMAGE=wordpress
WORDPRESS_PROD_VERSION=php7.4-fpm
WORDPRESS_DEV_VERSION=php7.4
WORDPRESS_CLI_VERSION=cli-php7.4
WORDPRESS_DB_NAME=wordpress
WORDPRESS_TABLE_PREFIX=wp_
WORDPRESS_DB_HOST=mysql
WORDPRESS_DB_USER=wordpress
WORDPRESS_DB_PASSWORD=password
# mariadb
MARIADB_VERSION=latest
MYSQL_ROOT_PASSWORD=s3cretPassW0rd
MYSQL_DATA_DIR=./wordpress-sql
MYSQL_DUMP_DIR=./mysql-dumps
# nginx - nginx:latest
NGINX_VERSION=latest
SERVER_NAME=example.com
SERVER_ALT_NAME=www.example.com
WP_CONTAINER_NAME=wordpress
SECURE_SUBNET=192.168.0.0/16
# volumes on host
NGINX_CONF_DIR=./config/nginx/cfg/
NGINX_TEMPLATE_DIR=./config/nginx/tpl/
WORDPRESS_DATA_DIR=./wordpress-src
# build options
WORDPRESS_UID=1000
WORDPRESS_GID=1000
WORDPRESS_USER=app
WORDPRESS_GROUP=app
CUSTOM_WORDPRESS_IMAGE=my-wordpress