Skip to content

Commit

Permalink
add docker-compose and .dockerignore
Browse files Browse the repository at this point in the history
  • Loading branch information
breandan committed Jul 1, 2018
1 parent e2847d3 commit 1e6be7a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Dockerfile
target
docker-compose.yml
16 changes: 16 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: '3'
services:
aido-host:
build: .
image: duckietown/amod
expose:
- "9382"
command: java -cp target/amod-1.2.2.jar amod.aido.AidoHost
aido-guest:
build: .
image: duckietown/amod
expose:
- "9382"
command: java -cp target/amod-1.2.2.jar amod.aido.AidoGuest
links:
- aido-host

0 comments on commit 1e6be7a

Please sign in to comment.