From ad78aaec17067b6d9ec37a03c71bb287d83aa15e Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Thu, 21 Dec 2023 15:04:36 +0100 Subject: [PATCH] wip #6598 @5 --- app/bin/mount | 2 -- docker-compose.yml | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/bin/mount b/app/bin/mount index d0bf480..cc94ccc 100755 --- a/app/bin/mount +++ b/app/bin/mount @@ -3,7 +3,6 @@ mkdir -p /files if mountpoint -q "/files"; then : else - #sshfs -o reconnect,ServerAliveInterval=15,ServerAliveCountMax=3 -o uid=33 -o gid=33 -o allow_other root@godzilla.cubedesigners.com:/data/fluidbook/docs /files sshfs -o reconnect,ServerAliveInterval=15,ServerAliveCountMax=3 -o uid=33 -o gid=33 -o allow_other root@dracula.cubedesigners.com:/data/fluidbook/docs /files fi @@ -18,7 +17,6 @@ mkdir -p /application/protected/fluidbookpublication/docs if mountpoint -q "/application/protected/fluidbookpublication/docs"; then : else - #sshfs -o reconnect,ServerAliveInterval=15,ServerAliveCountMax=3 -o uid=33 -o gid=33 -o allow_other root@godzilla.cubedesigners.com:/data/fluidbook/docs /application/protected/fluidbookpublication/docs sshfs -o reconnect,ServerAliveInterval=15,ServerAliveCountMax=3 -o uid=33 -o gid=33 -o allow_other root@dracula.cubedesigners.com:/data/fluidbook/docs /application/protected/fluidbookpublication/docs fi diff --git a/docker-compose.yml b/docker-compose.yml index b154345..7903cb0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,6 +12,8 @@ services: - './ssh/:/root/.ssh/' - './php/fpm.conf:/etc/php/8.2/fpm/pool.d/z-overrides.conf' - './php/php.ini:/etc/php/8.2/fpm/conf.d/99-overrides.ini' + tmpfs: + - /tmp ports: - '9457:9000' restart: unless-stopped -- 2.39.5