Skip to content

Docker compose

Sonia García-Ruiz edited this page Jan 5, 2021 · 2 revisions
  1. To establish communication between both docker images, it is first necessary to generate a file called 'docker-compose.yml'. The 'docker-compose.yml' file could have the following content:
version: '3.4'

services:
  mvccoexp:
    image: coexp:ui
    ports:
      - "8088:80"
  rcoexp:
    image: coexp:r
    ports:
      - "8800:8800"
  1. Execute the docker-compose file:
docker-compose up
  1. To test this configuration works, disable your Internet connection and try the following URL:
localhost:8088

If everything has gone as expected, your local (and dockerized) version of CoExp Web Application will be ready to be used!