-
Issue type
Where is apache2 path in wordpress docker? -
OS Version/build
windows 10 pro / WSL / docker 19 daemon on WSL -
App version
5.2.4-php7.1-apache
-
Steps to reproduce
Cannot find location of apache2 or httpd file.
==========================================
Hi,
Everything is working.
But I cannot find httpd or apache2.
Where is it?
My docker file is here. Everything is running well. But I want to know the path for apache2 / httpd/
I have tried
/usr/local/apache2 - does not exist
/etc/httpd - does not exist.
Thanks in advance.
===========================================
version: '3'
services:
db:
image: mysql:8
container_name: mysql
restart: always
volumes:
- /e/PROJECT/DOCKER/APPS/MY-APP/MYSQL:/var/lib/mysql
command: "--default-authentication-plugin=mysql_native_password"
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: wpdb
MYSQL_USER: user
MYSQL_PASSWORD: password
wordpress:
image: wordpress:5.2.4
container_name: wordpress
restart: always
volumes:
- /e/PROJECT/DOCKER/APPS/MY-APP/WP-CONTENT:/var/www/html/wp-content
environment:
WORDPRESS_DB_HOST: db
WORDPRESS_DB_NAME: wpdb
WORDPRESS_DB_USER: user
WORDPRESS_DB_PASSWORD: password
ports:
- 8080:80
- 443:443
phpmyadmin:
image: phpmyadmin/phpmyadmin
restart: always
ports:
- 3333:80
environment:
PMA_HOST: db
MYSQL_ROOT_PASSWORT: password