2

I'm trying to install discourse forum on the Amazon Linux AMI release 2014.03. To install that forum I should use docker 1.2 or more but when I type "yum install docker" I getting version 1.1.2-1.0.amzn1 from amazon. So how can I download and install the last version from https://github.com/docker/docker?

Vitach
  • 281
  • 5
  • 11

1 Answers1

4

I found answer on my question here: https://github.com/docker/docker/issues/7968

$ yum --enablerepo epel-testing install docker-io
Vitach
  • 281
  • 5
  • 11
  • I had some trouble with this at first. In order to get this to work you need to enable the epel repo on Amazon Linux: `sudo vim /etc/yum.repos.d/epel.repo`. Then set the `enabled` options to `1`. – kellanburket Jan 03 '17 at 20:57