Skip to content

Commit

Permalink
Add docker-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AEtherC0r3 committed Aug 30, 2016
1 parent f72998e commit 5a25f6d
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
version: '2'

services:

website:
build:
context: .
dockerfile: Website-Dockerfile
expose:
- "80"
- "443"
ports:
- "1883:1883"

proxy:
build:
context: .
dockerfile: HAProxy-Dockerfile
links:
- website
ports:
- "80:80"
- "443:443"

ministerin:
build:
context: .
dockerfile: MinisterIN-Dockerfile
ports:
- "7777:7777"

0 comments on commit 5a25f6d

Please sign in to comment.