Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Commit

Permalink
Create .env.example
Browse files Browse the repository at this point in the history
  • Loading branch information
evertramos authored Aug 3, 2020
1 parent 191e5fe commit 6f68b89
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# .env file to set up your wordpress site

#
# Compose default env variables
#
COMPOSE_PROJECT_NAME=new-site

#
# Network name
#
# Your container app must use a network conencted to your webproxy
# https://github.com/evertramos/docker-compose-letsencrypt-nginx-proxy-companion
#
NETWORK=webproxy

#
# Database Container options
#

# Database image (mariadbmysql)
DB_IMAGE=mariadb

# Database version
DB_VERSION=latest

# Database container name
CONTAINER_DB_NAME=new-site-db

# Path to store your database files
DB_FILES=./data/db

# Root password for your database
MYSQL_ROOT_PASSWORD=root_password

# Database name, user and password for your wordpress
MYSQL_DATABASE=database_name
MYSQL_USER=user_name
MYSQL_PASSWORD=user_password

#
# Wordpress Container options
#

# Wordpress version
#
# [IMPORTANT] We recommend to always set a version when starting a new site.
# When migrating or restoring a backup you must know the running version for
# theme and plugins compatibility.
WP_VERSION=latest

# Wordpress container name
CONTAINER_WP_NAME=new-site-site

# Max Log File Size
LOGGING_OPTIONS_MAX_SIZE=200k

# Path to store your wordpress files
WP_FILES=./data/site

# Table prefix
WORDPRESS_TABLE_PREFIX=wp_

# Your domain (or domains)
DOMAINS=domain.com,www.domain.com

# Your email for Let's Encrypt register
LETSENCRYPT_EMAIL=[email protected]

0 comments on commit 6f68b89

Please sign in to comment.