Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1.24 KB

README.md

File metadata and controls

41 lines (28 loc) · 1.24 KB

Pip.Services Logo
Development environment

This is a dockerized environment to support development and testing of Pip.Services.

docker-compose.yaml file contains configuration of supported databases and infrastructure services like mongodb, memcached, and others. They configured to use internal storage, so after restart their state is lost.

Installation

Before using the environment you shall install Docker for Windows. If you are planning to use Vagrant with VirtualBox or VMware, install Docker Toolbox instead since the latest version of Docker uses Hiper-V and conflicts with other VM managers.

Start / Stop

To start the services:

docker-compose up

To stop the services:

docker-compose stop

To remove the services:

docker-compose rm --force

Special commands

Open MongoDB client console:

docker exec -it mongo mongo

Then inside the console select pipservicestest database:

use pipservicestest
show collections