#3934·arcane

Bug: Clicking on the volumes button brings you to a 500 error.

Author: zoe-tekCreated Sep 14, 2026Updated Sep 15, 2026
Labelstriage

Bug Description

Once you are on a specific volume if you click the top left volume button to get back volumes if says Something went wrong Internal Error - 500

Steps To Reproduce

  1. go to volumes
  2. click on volume
  3. click the top left volume button

Expected Behavior

Take you to volumes

Actual Behavior

bring you to a 500 error screen

Screenshots

Image

Arcane Version

v2.11.1

Installation Method

Docker Compose (Recommended)

Environment Type

Local Docker (Single instance)

Database Type

SQLite (Default)

Operating System

Linux

Docker Version

29.8.0

Browser & Version

waterfox 6.7.2

Relevant Logs or Error Messages

bash
Sep 14 03:14:48.971 ERR context canceled error="context canceled" query="SELECT * FROM `activities` WHERE environment_id = '0' AND ((type <> 'job_run' OR (json_type(metadata, '$.environmentId') = 'text' AND json_extract(metadata, '$.environmentId') <> ''))) ORDER BY CASE WHEN status IN ('queued', 'running') THEN 0 ELSE 1 END ASC,COALESCE(ended_at, created_at) DESC,id DESC,`activities`.`id` LIMIT 50" duration=962.247µs rows=1

Docker Compose Configuration

yaml
services:
  arcane:
    image: ghcr.io/getarcaneapp/manager:latest
    container_name: arcane
    ports:
      - '3552:3552'
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
      - arcane-data:/app/data
    environment:
      - APP_URL=http://localhost:3552
      - PUID=1000
      - PGID=1000
      - ENCRYPTION_KEY=******************
    cgroup: host
    restart: unless-stopped

volumes:
  arcane-data:

Environment Configuration (.env file)

bash

Additional Context

No response