Fix default assets path in docker-compose

This commit is contained in:
Martin Kleinschrodt 2021-12-15 12:55:39 +01:00
parent fd6d2061f8
commit 730920e861
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ services:
volumes:
- attachments:/attachments
- logs:/logs
- ${PL_ASSETS_DIR:-./packages/app/assets}:/assets
- ${PL_ASSETS_DIR:-./assets}:/assets
restart: unless-stopped
pwa:
image: padloc/pwa
@ -46,7 +46,7 @@ services:
dockerfile: Dockerfile-pwa
volumes:
- pwa:/pwa
- ${PL_ASSETS_DIR:-./packages/app/assets}:/assets
- ${PL_ASSETS_DIR:-./assets}:/assets
environment:
- PL_ASSETS_DIR=/assets
command: ["build"]