commit 42d446621b5564fb439da20e5b593d83ae4fbca6 parent 51bb1abbc5b6a268037f9fcac2d83585ba01fbb8 Author: JayVii <jayvii[AT]posteo[DOT]de> Date: Sat, 20 Jul 2024 10:57:08 +0200 fix: bind volumes correctly Diffstat:
M | docker/docker-compose.yaml | | | 8 | ++------ |
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml @@ -20,9 +20,5 @@ services: # mount volumes for db and uploads so they survive restarts volumes: - - type: bind - source: /var/www/ktistec/db - target: /db - - type: bind - source: /var/www/ktistec/uploads - target: /uploads + - /var/www/ktistec/db:/db + - /var/www/ktistec/uploads:/uploads