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