0

I am trying to deploy gitlab using marathon. In development, i was using a docker-compose.yml, which included mariadb and redis in two dependances container.

I saw the marathon sample for creating groups.

I am trying to adapt so it look like the same as the docker-compose.yml

Only one think, I don't see how I can link container together.

Dimitri Kopriwa
  • 13,139
  • 27
  • 98
  • 204

1 Answers1

0

You don't link Docker containers with Marathon. You use service discovery such as Mesos-DNS. Have a look at this end-to-end example.

Michael Hausenblas
  • 13,162
  • 4
  • 52
  • 66