diff --git a/.env-example b/.env-example index 8e35e53..c2f9f61 100644 --- a/.env-example +++ b/.env-example @@ -1,14 +1,18 @@ +APP_IMAGE_TAG=mywp:8.2.8-apache +APP_URL=wpdocker.test +DB_NAME=wordpress DB_ROOT_PASSWORD=root DB_USER=user -DB_USER_PASSWORD=user -DOCKER_PREFIX=wp -DOCKER_IMAGE_TAG=wp-php7.4:dev -MOUNT_USER=username -TRAEFIK_NETWORK_NAME=traefik +DB_USER_PASSWORD=password +PHP_POST_MAX_SIZE=10m +PHP_UPLOAD_MAX_FILESIZE=10M +PREFIX=wpdocker +TRAEFIK_LISTENING_IP=192.168.2.108 WP_ADMIN_PASSWORD=admin WP_ADMIN_USERNAME=admin WP_DEFAULT_PROTOCOL=https WP_LOCALE=fr_FR -WP_THEME=twentyseventeen -WP_URL=www.wp.localhost -WP_VERSION=5.7 +WP_THEME=twentytwentytwo +WP_VERSION=6.3 +XDEBUG_CLIENT_HOST=192.168.2.108 +XDEBUG_MODE=debug diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3ea284e --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +.env +backup-volumes/ +env_files/certs.env +env_files/manage.env +env_files/migrate-db.env +env_files/remote.env +tmp/ +traefik-volumes/ +webroot-remote/ +webroot-volume/ diff --git a/env_files/certs.env b/env_files/certs-example.env similarity index 100% rename from env_files/certs.env rename to env_files/certs-example.env diff --git a/env_files/manage.env b/env_files/manage-example.env similarity index 100% rename from env_files/manage.env rename to env_files/manage-example.env diff --git a/env_files/migrate-db.env b/env_files/migrate-db-example.env similarity index 100% rename from env_files/migrate-db.env rename to env_files/migrate-db-example.env diff --git a/env_files/remote.env b/env_files/remote-example.env similarity index 100% rename from env_files/remote.env rename to env_files/remote-example.env