64 lines
		
	
	
		
			1001 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1001 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# This file needs copied to `.env` and have its values changes as needed.
 | 
						|
 | 
						|
## Docker ##
 | 
						|
 | 
						|
COMPOSE_BAKE=true
 | 
						|
 | 
						|
## End Docker ##
 | 
						|
 | 
						|
 | 
						|
## WordPress ##
 | 
						|
 | 
						|
# TBD/TODO: These do not actually seem to work.
 | 
						|
WORDPRESS_ADMIN_USERNAME='wp_user'
 | 
						|
WORDPRESS_ADMIN_PASSWORD='wordpress_password'
 | 
						|
 | 
						|
# Uncomment this to get debug output in the log.
 | 
						|
WORDPRESS_DEBUG=1
 | 
						|
 | 
						|
## End WordPress ##
 | 
						|
 | 
						|
 | 
						|
## Database ##
 | 
						|
 | 
						|
MARIADB_DATABASE='wordpress'
 | 
						|
 | 
						|
MARIADB_USER='db_user'
 | 
						|
MARIADB_PASSWORD='database_password'
 | 
						|
 | 
						|
MARIADB_ROOT_PASSWORD='db_root_password'
 | 
						|
 | 
						|
# Comment this if you do not want MariaDB to run upgrade scripts on new versions.
 | 
						|
MARIADB_AUTO_UPGRADE=1
 | 
						|
 | 
						|
## End Database ##
 | 
						|
 | 
						|
 | 
						|
## Performance ##
 | 
						|
 | 
						|
# Standard Minimum
 | 
						|
#WP_CPU=1.00
 | 
						|
#WP_MEM=2.00G
 | 
						|
#WP_CPU_DB=1.00
 | 
						|
#WP_MEM_DB=1.00G
 | 
						|
 | 
						|
# Standard Recommended
 | 
						|
#WP_CPU=1.00
 | 
						|
#WP_MEM=4.00G
 | 
						|
#WP_CPU_DB=1.00
 | 
						|
#WP_MEM_DB=0.50G
 | 
						|
 | 
						|
# Tested Minimum
 | 
						|
#WP_CPU=0.35
 | 
						|
#WP_MEM=0.35G
 | 
						|
#WP_CPU_DB=0.15
 | 
						|
#WP_MEM_DB=0.15G
 | 
						|
 | 
						|
# Tested Recommended
 | 
						|
WP_CPU=0.50
 | 
						|
WP_MEM=0.50G
 | 
						|
WP_CPU_DB=0.25
 | 
						|
WP_MEM_DB=0.25G
 | 
						|
 | 
						|
## End Performance ##
 |