Skip to content

nextcloud-aio images have been moved to ghcr.io #2737

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions apps/imaginary.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fi
lowest_compatible_nc 26

# Check if Imaginary is already installed
if ! does_this_docker_exist nextcloud/aio-imaginary
if ! does_this_docker_exist nextcloud/aio-imaginary && ! does_this_docker_exist ghcr.io/nextcloud-releases/aio-imaginary
then
# Ask for installing
install_popup "$SCRIPT_NAME"
Expand All @@ -47,6 +47,7 @@ else
then
# Remove docker container
docker_prune_this 'nextcloud/aio-imaginary' 'imaginary'
docker_prune_this 'ghcr.io/nextcloud-releases/aio-imaginary' 'imaginary'
# reset the preview formats
nextcloud_occ config:system:delete "preview_imaginary_url"
nextcloud_occ config:system:delete "enabledPreviewProviders"
Expand Down Expand Up @@ -110,8 +111,8 @@ fi
install_docker

# Pull and start
docker pull nextcloud/aio-imaginary:latest
docker run -t -d -p 127.0.0.1:9000:9000 --restart always --name imaginary nextcloud/aio-imaginary –cap-add=sys_nice -concurrency 50 -enable-url-source -return-size -log-level debug
docker pull ghcr.io/nextcloud-releases/aio-imaginary:latest
docker run -t -d -p 127.0.0.1:9000:9000 --restart always --name imaginary ghcr.io/nextcloud-releases/aio-imaginary –cap-add=sys_nice -concurrency 50 -enable-url-source -return-size -log-level debug

# Test if imaginary is working
countdown "Testing if it works in 3 sedonds" "3"
Expand Down
7 changes: 4 additions & 3 deletions apps/talk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ else
done
apt-get autoremove -y
docker_prune_this nextcloud/aio-talk-recording
docker_prune_this ghcr.io/nextcloud-releases/aio-talk-recording
# Show successful uninstall if applicable
removal_popup "$SCRIPT_NAME"
fi
Expand Down Expand Up @@ -530,7 +531,7 @@ ram_check 4 "Talk Recording"
print_text_in_color "$ICyan" "Setting up Talk recording..."

# Pull and start
docker pull nextcloud/aio-talk-recording:latest
docker pull ghcr.io/nextcloud-releases/aio-talk-recording:latest
docker run -t -d -p "$TURN_RECORDING_HOST":"$TURN_RECORDING_HOST_PORT":"$TURN_RECORDING_HOST_PORT" \
--restart always \
--name talk-recording \
Expand All @@ -541,12 +542,12 @@ docker run -t -d -p "$TURN_RECORDING_HOST":"$TURN_RECORDING_HOST_PORT":"$TURN_RE
-e TZ="$(cat /etc/timezone)" \
-e RECORDING_SECRET="${TURN_RECORDING_SECRET}" \
-e INTERNAL_SECRET="${TURN_INTERNAL_SECRET}" \
nextcloud/aio-talk-recording:latest
ghcr.io/nextcloud-releases/aio-talk-recording:latest

# Talk recording
if [ -d "$NCPATH/apps/spreed" ]
then
if does_this_docker_exist nextcloud/aio-talk-recording
if does_this_docker_exist ghcr.io/nextcloud-releases/aio-talk-recording
then
install_if_not netcat-traditional
while ! nc -z "$TURN_RECORDING_HOST" "$TURN_RECORDING_HOST_PORT"
Expand Down
2 changes: 1 addition & 1 deletion nextcloud-startup-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ else
fi

# Set correct amount of CPUs for Imaginary
if does_this_docker_exist nextcloud/aio-imaginary
if does_this_docker_exist ghcr.io/nextcloud-releases/aio-imaginary
then
if which nproc >/dev/null 2>&1
then
Expand Down