Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

docker compose?

Featured Replies

+1, I don't want couchpotato or sickrage starting before sabnzbd, etc.  makes sense

  • Replies 118
  • Views 54k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • I'd like something like this. Both to easily reuse Docker Compose setups, but also to be able to group applications together in the Unraid UI. Atm it feels like Unraid promotes bad Docker practice by

  • ironicbadger
    ironicbadger

    Sorry to revive an old thread.   Can we get docker-compose into unraid for real this time?

  • I for one would also like to see this, as I use numerous links in my configuration. It seems to me that the dockerMan's XML template system is just re-implementing what docker-compose does better, and

Posted Images

4 minutes ago, spamalam said:

+1, I don't want couchpotato or sickrage starting before sabnzbd, etc.  makes sense

There are other good reasons for wanting this, but order of operations can be handled right now with

 

Sure, but no health probes, resource management, etc. :)

 

Kubernetes or Docker Compose is the way to go when orchestrating containers.

  • 3 weeks later...

How's it going with this? I'd be needing that too... +1

14 hours ago, ThisIsXO said:

I got docker-compose working perfectly by just using the linux install instructions from Docker's site.

 

That's not really the issue; It should come as part of the system so one doesn't have to do it by hand or rig up /boot/config/go.

Edited by daze

On 12/01/2018 at 7:08 AM, daze said:

 

That's not really the issue; It should come as part of the system so one doesn't have to do it by hand or rig up /boot/config/go.

You don't need to do anything. Docker compose isn't some complicated program it's a single binary file that you add somewhere in your $PATH and you're good to go.

The whole install is below.

sudo curl -L https://github.com/docker/compose/releases/download/1.18.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose

  • 2 weeks later...

I want to make a Composer UnRAID Docker template, but from what I have tried so far, it just shuts down after setting it up.

 

I only created a UnRAID template, somewhat, for a PHPMyAdmin Docker before.

And the Composer Docker is not giving me anything to work with in terms of errors.

 

Template:

qHRdYwp.png

 

Command:

w1Dqmcl.png

 

Console log:

XDCBwtO.png

And than it it just isn't running anymore, no error message, nothing.

 

 

Docker hub:

https://hub.docker.com/_/composer/

 

I tried to follow and convert it as I thought would be as accurate as possible, but it's likely I missed or misinterpreted something.

Anyone who tried to make a UnRAID Docker template for Composer yet, or perhaps could shine some light on what to do next?

Edited by Arndroid

2 hours ago, Arndroid said:

I want to make a Composer UnRAID Docker template, but from what I have tried so far, it just shuts down after setting it up.

 

I only created a UnRAID template, somewhat, for a PHPMyAdmin Docker before.

And the Composer Docker is not giving me anything to work with in terms of errors.

 

Template:

qHRdYwp.png

 

Command:

w1Dqmcl.png

 

Console log:

XDCBwtO.png

And than it it just isn't running anymore, no error message, nothing.

 

 

Docker hub:

https://hub.docker.com/_/composer/

 

I tried to follow and convert it as I thought would be as accurate as possible, but it's likely I missed or misinterpreted something.

Anyone who tried to make a UnRAID Docker template for Composer yet, or perhaps could shine some light on what to do next?

 

What does this have to do with this thread? Docker compose and the composer you are trying to get to work is not the same thing. 

4 minutes ago, saarg said:

 

What does this have to do with this thread? Docker compose and the composer you are trying to get to work is not the same thing. 

 

They sound similarish..... :D

 

14 minutes ago, CHBMB said:

 

They sound similarish..... :D

 

 

I didn't notice that :ph34r:

On 1/12/2018 at 4:11 PM, ThisIsXO said:

You don't need to do anything. Docker compose isn't some complicated program it's a single binary file that you add somewhere in your $PATH and you're good to go.

The whole install is below.

sudo curl -L https://github.com/docker/compose/releases/download/1.18.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose

I'm aware of how to install it. Again, the issue is that tool should be part of the image. If docker is included (obviously), then this tool should be too.

Edited by daze
Grammar

  • 2 weeks later...

+ 1 for the compose / kubernetes in unraid out-of-box (and also using multiple unraid nodes)

  • 1 month later...

or compose and portainer

 

+1

On 13/01/2018 at 1:11 AM, ThisIsXO said:

You don't need to do anything. Docker compose isn't some complicated program it's a single binary file that you add somewhere in your $PATH and you're good to go.

The whole install is below.

sudo curl -L https://github.com/docker/compose/releases/download/1.18.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose

Won't it get wiped after reboot when placing it in /usr/local/bin ?

1 hour ago, delivereath said:

Won't it get wiped after reboot when placing it in /usr/local/bin ?

Yes, but since the install is short and sweet, just reinstall it every boot with the user scripts plugin.

  • 3 weeks later...

Any plans for this? Docker compose would be a much better way to handle multiple containers and would need less effort from the devs and maintainers and it opens up other options as well. 

 

I don't know if there are technical issues preventing this or there isn't enough demand?

I'll +1 this.  I could use this feature in the GUI.  This is the 2nd most viewed request on feature request.

+ 1

 

Please add docker-compose

+1

 

Please

  • 2 weeks later...

+1

On 3/6/2018 at 1:23 PM, jonathanm said:

Yes, but since the install is short and sweet, just reinstall it every boot with the user scripts plugin.

 

That or put those two lines into the go file

Or make it available in the distro, to be consistent since the distro is installing Docker, and it should install part of the important tool as well since it is the right thing to do.

1 hour ago, daze said:

Or make it available in the distro, to be consistent since the distro is installing Docker, and it should install part of the important tool as well since it is the right thing to do.

 

Well, docker-compose is really an alternative to dockerman that unraid developed. They are competing managers. 

 

And docker compose is really just a script. Perhaps it's better to add docker-compose to the nerd pack plugin? 

 

I agree with aptalca, docker compose is a command line tool. Unraid's focus is on webgui.

Either install it manually or ask if it can be put into nerd tools.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.