File tree Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 44 - solr
55 - mysql
66 volumes :
7- - ./htdocs :/var/www/html
7+ - ./:/var/www/
88 env_file :
99 - docker-env.yml
1010
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ SetEnv TYPO3_CONTEXT <TYPO3_CONTEXT>
1313
1414DirectoryIndex index.html index.htm index.php
1515
16- DocumentRoot "/var/www/html /"
17- <Directory "/var/www/html /">
16+ DocumentRoot "/var/www/htdocs /"
17+ <Directory "/var/www/htdocs /">
1818 Options Indexes FollowSymLinks
1919 AllowOverride All
2020 Require all granted
Original file line number Diff line number Diff line change 99 access_log /dev/stdout;
1010 error_log /dev/stdout info;
1111
12- root /var/www/html /;
12+ root /var/www/htdocs /;
1313 index index.php;
1414
1515 client_max_body_size 50m;
Original file line number Diff line number Diff line change @@ -25,15 +25,17 @@ RUN apt-get install -y \
2525 graphicsmagick \
2626 zip \
2727 unzip \
28- curl
28+ curl \
29+ mysql-client
2930
3031RUN curl -sS https://getcomposer.org/installer | php
3132RUN mv composer.phar /usr/local/bin/composer
3233
3334ADD entrypoint.sh /entrypoint.sh
3435ADD ./htdocs /var/www/html
3536
36- WORKDIR /var/www/html
37+ VOLUME /var/www/
38+ WORKDIR /var/www/htdocs/
3739
3840ENTRYPOINT ["/entrypoint.sh" ]
3941CMD ["echo" , "hello" ]
You can’t perform that action at this time.
0 commit comments