Move development files to devel directory
This commit is contained in:
parent
6647d0c964
commit
3e303ceda8
3 changed files with 0 additions and 0 deletions
27
devel/compose.yaml
Normal file
27
devel/compose.yaml
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
version: '3.8'
|
||||
|
||||
services:
|
||||
# custom:
|
||||
# image: php:8.3.12-apache
|
||||
# container_name: folderweb-custom
|
||||
# working_dir: /var/www/html/
|
||||
# volumes:
|
||||
# - ../app:/var/www/app:z
|
||||
# - ../content:/var/www/html:z
|
||||
# - ../custom:/var/www/custom:z
|
||||
# - ../docs:/var/www/html/docs:z
|
||||
# - ./apache/custom.conf:/etc/apache2/conf-available/custom.conf:z
|
||||
# ports:
|
||||
# - "4040:80"
|
||||
# command: bash -c "a2enconf custom && a2enmod rewrite && apache2-foreground"
|
||||
default:
|
||||
image: php:8.4.14-apache
|
||||
container_name: folderweb-default
|
||||
working_dir: /var/www/html/
|
||||
volumes:
|
||||
- ../app:/var/www/app:z
|
||||
- ./apache/custom.conf:/etc/apache2/conf-available/custom.conf:z
|
||||
- ./apache/default.conf:/etc/apache2/sites-available/000-default.conf:z
|
||||
ports:
|
||||
- "8080:80"
|
||||
command: bash -c "a2enconf custom && a2enmod rewrite && apache2-foreground"
|
||||
Loading…
Add table
Add a link
Reference in a new issue