I’m hosting a few services using docker. For something like an openstreetmap tileserver, I’d like it to remain on my SSD because high speed improves performance, and the directory is unlikely to grow and fill the drive.

For other services like NextCloud, speed isn’t as important as storage size, so I might want it on a larger HDD raid.

I know it’s trivial to move the volumes directory to wherever, but can I move some volumes to one directory and some volumes to another?

  • Matt The Horwood@lemmy.horwood.cloud
    link
    fedilink
    English
    arrow-up
    3
    ·
    11 days ago

    If you use a volume, you can mount that anywhere.

    volumes:
      lemmy_pgsql:
        driver: local
        driver_opts:
          type: none
          o: bind
          device: '/mnt/data/lemmy/pgsql'
    

    Then in your service add a volume

        volumes:
          - lemmy_pgsql:/var/lib/postgresql/data:Z