Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 708 Bytes

File metadata and controls

37 lines (24 loc) · 708 Bytes

Pokemate Deployment

Architecture

The follwing image illustrates how the containers a communicating with eachother. Each of images is available on Dockerhub. Thus, there is no need to clone any other repositories.

Image description

Run

Pull most recent images:

docker-compose pull

To run all containers, execute:

docker-compose up
# use -d option for detached mode

Run in DEV mode

Pull most recent images:

docker-compose -f docker-compose.dev.yml pull

To run all containers, execute:

docker-compose -f docker-compose.yml -f docker-compose.dev.yml up
# use -d option for detached mode