You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
526 B
22 lines
526 B
---
|
|
|
|
# Default name of WP containers and unique ID for this instance
|
|
wp_docker_name: wp_wordpress
|
|
|
|
# Root dir of Docker
|
|
wp_docker_root_dir: /opt/docker
|
|
|
|
# Default Wordpress image used from Docker HUB
|
|
wp_docker_image: wordpress-fpm:latest
|
|
|
|
# Containers will automaticly restart Website at boot
|
|
wp_docker_restart: unless-stopped
|
|
|
|
# Default port of WP containers
|
|
wp_docker_port: 8080
|
|
|
|
# Default DB config
|
|
wp_docker_db_host: localhost
|
|
wp_docker_db_user: wp_wordpress
|
|
wp_docker_db_psw: wp_wordpress
|
|
wp_docker_db_name: wp_wordpress
|
|
|