diff --git a/.docker-compose.http.yml b/.docker-compose.http.yml index 95cd1f3..d6683ee 100644 --- a/.docker-compose.http.yml +++ b/.docker-compose.http.yml @@ -51,6 +51,7 @@ services: - theme_data:/var/www/html/theme - image_upload:/var/www/html/public/uploads/images - theme_assests_data:/var/www/html/public/theme + - recording_uploads:/var/www/html/data/recording networks: - external - internal @@ -111,4 +112,5 @@ volumes: mariadb: image_upload: theme_data: - theme_assests_data: \ No newline at end of file + theme_assests_data: + recording_uploads: \ No newline at end of file diff --git a/.docker-compose.https.yml b/.docker-compose.https.yml index 8f7bce7..021ae23 100644 --- a/.docker-compose.https.yml +++ b/.docker-compose.https.yml @@ -97,6 +97,7 @@ services: - theme_data:/var/www/html/theme - image_upload:/var/www/html/public/uploads/images - theme_assests_data:/var/www/html/public/theme + - recording_uploads:/var/www/html/data/recording networks: - external - internal @@ -173,4 +174,5 @@ volumes: caddy_config: image_upload: theme_data: - theme_assests_data: \ No newline at end of file + theme_assests_data: + recording_uploads: \ No newline at end of file diff --git a/setup.sh b/setup.sh index c0ac9a1..16f4d28 100644 --- a/setup.sh +++ b/setup.sh @@ -159,6 +159,7 @@ if [ -d /var/lib/docker/volumes/$APP_NAME_theme_data ]; then chown -R $DOCKER_VOLUME_OWNER /var/lib/docker/volumes/jitsi-admin_image_upload chown -R $DOCKER_VOLUME_OWNER /var/lib/docker/volumes/jitsi-admin_theme_data chown -R $DOCKER_VOLUME_OWNER /var/lib/docker/volumes/jitsi-admin_theme_assests_data + chown -R $DOCKER_VOLUME_OWNER /var/lib/docker/volumes/jitsi-admin_recording_uploads fi RED='\033[0;31m'