"volumes": [
...,
"./admin_panel/backend/basic/docker/apache.conf:/etc/apache2/sites-available/000-default.conf"
]
Listen 5000
<VirtualHost *:5000>
ServerAdmin webmaster@localhost
DocumentRoot /app/web
ServerName Localhost
<Directory /app/web/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>