8 min read July 19, 2026

필요한 데이터를 남기고 Odysseus AI를 제거하는 방법

Docker, Windows, macOS, and Linux cleanup guide

Odysseus AI Wiki
Odysseus AI Wiki
Fan-made technical guidance based on the current official repository.

Quick answer: 앱을 중지하고 데이터를 백업한 뒤 Docker 또는 네이티브 설치를 확인하고 코드, 데이터, 비밀값, 공유 모델을 분리합니다.

공통 제거 명령은 없습니다. 코드, 볼륨, DB, 파일, 인증 정보, Ollama 모델을 분리하세요. 공식 저장소는 2026년 7월 19일 확인했으며 검증 가능한 release/tag가 없었습니다.

삭제 전 확인

Record how Odysseus was started and back up documents, notes, exports, database files, and settings outside the repository.


올바른 경로 선택

Use the Docker path when docker compose ps shows Odysseus services. Use the native path when launch scripts or manual Python/frontend commands ran on the host.

Path Remove first Keep unless intentional
Docker Compose Containers and network Volumes, mounts, Ollama models
Native scripts Processes and repository Shared runtimes and tools
Privacy reset App data and copied secrets Verified non-secret notes

Docker Compose 제거

Run docker compose down first. It removes containers and networks while normally preserving named volumes. Use docker compose down -v only after inspecting and backing up persistent data.


네이티브 설치 제거

Stop backend and frontend processes, then remove the cloned repository. Delete only Odysseus-specific startup tasks, services, shortcuts, or firewall rules; keep shared Python, Node, Git, Docker, and Ollama tools when other projects need them.


보존 데이터 결정

Treat repository code, database/uploads, .env secrets, logs, Docker volumes, bind mounts, and Ollama models as separate data groups. Privacy cleanup should also check backups and the recycle bin.


제거 결과 확인

Confirm the former local URL no longer responds, no project container or process remains, and the repository is deleted or archived. Reinstall from the current official repository and active branch documentation.

  1. Stop

    Stop the application and related containers or processes.

  2. Remove

    Delete only the selected code and data groups.

  3. Verify

    Check URL, port, containers, processes, volumes, and path.

  4. Reinstall

    Clone the official repository and follow active branch docs.

FAQ

Normally no. Ollama stores models separately; remove them only if no other tool needs them.

It normally keeps named volumes. The -v option requests volume deletion.

Yes, after stopping the app and backing up needed data outside it.

The official repository does not package a separate agent product; remove module configuration or the whole deployment.

Yes. Keep non-secret notes about ports, deployment method, and model endpoint.

Official sources

  1. Official Odysseus repository - Repository and branch structure checked July 19, 2026.
  2. Official setup guide - Docker and native setup paths.
  3. Docker Compose down reference - Container, network, image, and volume behavior.

Related guides

Verified July 19, 2026

Back to Odysseus AI Wiki