Über noob - I'd greatly appreciate help with 2 Docker Compose setups - Cloud Commander & Emby

  • Good evening (or morning, or wherever you are in the world!).


    I have decided to move away from Windoze and thought OMV looks great for managing stuff from my phone or laptop.


    Let me preface this with the fact that I am not particularly experienced with OMV, and I'm utterly lost when it comes to Docker.


    I need to run 2 Docker Compose files as mentioned in the Title.


    I have Cloud Commander up and running, and I managed to get it to read the shares OK, but it always seems to run as root, accesses the system folders (which I don't want it to), and won't retain settings (like running in dark mode).


    The Emby file won't even start, and gives this error:

    services.emby.environment.[0]: unexpected type map[string]interface {}


    I have read the guide (https://wiki.omv-extras.org/do…r_compose_plugin_for_omv7) ... but I think I'm missing some fundamental knowledge.


    I'm not afraid to admit that I'm in *way* over my head with Docker, but with some help I hope to learn and gain a better understanding.


    Thanks in advance for taking the time to read.


    Regards

    Paul <3 <3 <3

  • name: cloudcommander
    services:
    web:
    image: coderaiser/cloudcmd
    environment:
    - PUID=1002
    - PGID=100
    networks:
    default: null
    ports:
    - mode: ingress
    target: 8000
    published: "8000"
    protocol: tcp
    volumes:
    - type: bind
    source: /srv/remotemount/download
    target: /download
    bind:
    create_host_path: true
    - type: bind
    source: /srv/dev-disk-by-uuid-13e382cb-ff74-4002-81cf-28f425d6296a
    target: /Area51
    bind:
    create_host_path: true
    - type: bind
    source: /srv/dev-disk-by-uuid-ECD81F16D81EDEA0
    target: /Area51_Backup
    bind:
    create_host_path: true
    - type: bind
    source: /srv/dev-disk-by-uuid-a0a450ba-8c61-4f08-b03d-bac3b8b95ef6
    target: /pZg
    bind:
    create_host_path: true
    - type: bind
    source: /srv/dev-disk-by-uuid-7ee744e9-6dd9-4f0a-b418-b86ed671518e
    target: /pZg_Backup
    bind:
    create_host_path: true

    restart: unless-stopped

  • name: emby
    services:
    emby:
    image: emby/embyserver
    devices:
    - source: /dev/dri
    target: /dev/dri
    permissions: rwm
    environment:
    - GID: 100
    - GIDLIST: 44,105
    - UID: 1003
    network_mode: host
    ports:
    - mode: ingress
    target: 8096
    published: "8096"
    protocol: tcp
    restart: on-failure
    volumes:
    - type: bind
    source: /home/emby data
    target: /config
    bind:
    create_host_path: true
    - type: bind
    source: /srv/dev-disk-by-uuid-13e382cb-ff74-4002-81cf-28f425d6296a/Home/TV
    target: /TV
    bind:
    create_host_path: true
    - type: bind
    source: /srv/dev-disk-by-uuid-13e382cb-ff74-4002-81cf-28f425d6296a/Home/Movies
    target: /Movies
    bind:
    create_host_path: true
    - type: bind
    source: /srv/dev-disk-by-uuid-13e382cb-ff74-4002-81cf-28f425d6296a/Home/Music Video
    target: /Music Videos
    bind:
    create_host_path: true

  • pZg666

    Changed the title of the thread from “Ūber noob - I'd greatly appreciate help with 2 Docker Compose setups - Cloud Commander & Emby” to “Über noob - I'd greatly appreciate help with 2 Docker Compose setups - Cloud Commander & Emby”.
    • Official Post

    Regarding Emby, I can only suggest reading about Jellyfin.

    Regarding Cloud Commander, I'm not sure what the exact utility is. If it's a simple File Explorer for Windows, perhaps WinSCP could provide a better service, but I could be wrong...


    Regarding publishing compose files, keep in mind that the format is critical, so you must publish in a code box, read this: https://wiki.omv-extras.org/do…_request_on_the_omv_forum

  • Pasting compose files as text into a forum message causes all the formatting to be lost making them impossible to debug. Use a code box instead.


    Also, I don't know where you got the compose files you posted but the best for source for these would be the individual projects' docker home pages.


    https://hub.docker.com/r/emby/embyserver


    https://hub.docker.com/r/coderaiser/cloudcmd/

    --
    Google is your friend and Bob's your uncle!


    A backup strategy is worthless unless you have a verified to work by testing restore strategy.


    OMV AMD64 7.x on headless Chenbro NR12000 1U Intel Xeon CPU E3-1230 V2 @ 3.30GHz 32GB ECC RAM.

    OMV AMD64 8.x on headless Tyan Thunder SX GT86C-B5630 1U Server with Intel Xeon Silver 4110 CPU @ 2.10GHz & 32GB DDR4 ECC RAM.

  • Thank you both for your replies.

    I did post the text into the code box, but it wouldn't let me click the 'Reply' button, so I clicked the code button again and then I could 'Reply'... apologies, I'm not particularly used to forums either!


    Cloud Commander *is* a file manager, in the style of the old 2-pane file commander, but is accessed via a web browser.


    Unfortunately, there isn't a Jellyfin app for our TV.


    I actually used those basic Compose templates from those pages for both, but when I clicked the 'Check' button in OMV, it totally reconfigured the layout and the fields.


    I'll give it another go at pasting into the codebox tomorrow.


    Regards.

    • Official Post

    There are embyserver and cloudcmd examples in the compose plugin.

    omv 8.2.2-1 synchrony | 6.17 proxmox kernel

    plugins :: omvextrasorg 8.0.2 | kvm 8.2.1 | compose 8.1.7 | cterm 8.0 | borgbackup 8.1.7 | tempmon 8.0.3 | mergerfs 8.0.1 | scripts 8.0.1 | writecache 8.1.7


    omv-extras.org plugins source code and issue tracker - github - changelogs


    Please try ctrl-shift-R and read this before posting a question.

    Please put your OMV system details in your signature.
    Please don't PM for support... Too many PMs!

  • There are embyserver and cloudcmd examples in the compose plugin.

    ryecoaaron ... thank you so much ... that has got things almost perfect how I'd like them! What an amazing feature!


    I still can't get cloudcmd to retain 'dark mode' and it still shows folders I don't want ... but I can absolutely live with that.


    Thank you all for taking the time to read and comment offering help and guidance, it is *very* much appreciated.


    Kindest regards to all

    Paul

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!