Odrive on docker

Hi All,

anyone who has odrive installed on docker/portainer and can share the composer code?

I’ve been running odrive in Docker, and here’s a basic docker-compose.yml setup you can start with:

version: '3'
services:
  odrive:
    image: your-odrive-image
    container_name: odrive
    volumes:
      - /your/local/path:/data
    ports:
      - "8080:8080"
    restart: unless-stopped

Make sure to replace your-odrive-image with the correct image name and adjust the volume paths and ports as needed. Let me know if you run into issues.

1 Like