From e62bb8314bbc5b76e4fcf761c43d1ec961ee28d1 Mon Sep 17 00:00:00 2001 From: Jussi Virtanen Date: Thu, 3 Nov 2016 21:58:27 +0200 Subject: [PATCH] Add Compose file --- README.md | 8 ++++++++ docker-compose.yml | 12 ++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 docker-compose.yml diff --git a/README.md b/README.md index 1e16ab9..2a1c575 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,14 @@ Parity Docker Parity Docker is a financial exchange deployment on Docker. +Usage +----- + +Start Parity Docker with Compose: + + docker-compose up + + Contents -------- diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..a9a2c93 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,12 @@ +version: '2' +services: + parity-system: + build: 'parity-system' + ports: + - '4000:4000' + - '5000:5000' + - '6000:6000' + parity-fix: + build: 'parity-fix' + ports: + - '4010:4010'