Skip to content

Commit

Permalink
Merge pull request #188 from H2-invent/feature/fix-release
Browse files Browse the repository at this point in the history
Feature/fix release
  • Loading branch information
holema authored Jun 9, 2023
2 parents 686c834 + 523223b commit 3f338ae
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ RUN rm -rf node_modules/
#copy all the rest of the app
COPY . /var/www/html
#install all php dependencies
RUN chown -R docker:docker secretStorage
USER docker
RUN composer install
USER root
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ services:
- "traefik.http.services.app-odc.loadbalancer.sticky.cookie.secure=true"
volumes:
- datenschutzcenter_uploads:/var/www/html/public/uploads:rw
- datenschutzcenter_secret_storage:/var/www/html/public/uploads:rw
- datenschutzcenter_secret_storage:/var/www/html/secretStorage:rw
- datenschutzcenter_data:/var/www/html/public/data:rw
- $PWD/dockerupdate.sh:/etc/container/startup.sh

Expand Down
12 changes: 6 additions & 6 deletions templates/base/__sidenav.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@
<li class="{{ app.request.attributes.get('_route') == 'bericht' ? 'active' }}">
<a href="{{ path('bericht') }}">{% trans %}reports{% endtrans %}</a>
</li>
<li class="{{ app.request.attributes.get('_route') == 'external' ? 'active' }}">
<a href="{{ path('external') }}">{% trans %}external{% endtrans %}</a>
</li>
{# <li class="{{ app.request.attributes.get('_route') == 'external' ? 'active' }}">#}
{# <a href="{{ path('external') }}">{% trans %}external{% endtrans %}</a>#}
{# </li>#}
{% endif %}
{% if app.user.akademieUser %}
<li class="{{ app.request.attributes.get('_route') == 'akademie' ? 'active' }}">
Expand Down Expand Up @@ -111,9 +111,9 @@
<li>
<a href="{{ path('team_dsb') }}">{% trans %}externalDsb{% endtrans %}</a>
</li>
<li>
<a href="{{ path('upload_new') }}">{% trans %}import{% endtrans %}</a>
</li>
{# <li>#}
{# <a href="{{ path('upload_new') }}">{% trans %}import{% endtrans %}</a>#}
{# </li>#}
</ul>
</li>
{% endif %}
Expand Down

0 comments on commit 3f338ae

Please sign in to comment.