-
Notifications
You must be signed in to change notification settings - Fork 1
Docker compose
Sonia García-Ruiz edited this page Jan 5, 2021
·
2 revisions
- 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"
- Execute the docker-compose file:
docker-compose up
- 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!
@ 2019 - CoExp_Web
- Introduction
- Web Application
- Docker
- Install the docker images of CoExp Web Application
- Generate your own docker images of CoExp: