about summary refs log tree commit diff
diff options
context:
space:
mode:
authorhanemile <hanemile@protonmail.com>2018-12-11 23:43:19 +0100
committerhanemile <hanemile@protonmail.com>2018-12-11 23:43:19 +0100
commite4127a1b7030755079d5a5e4f93e7db1e0256e16 (patch)
tree621af3e4764262e327d49146420ff45b8990b7f3
parentb00efde2f0b8994b42879518d671627f1b1601c9 (diff)
Docker-compose using the Dockerfile in the current dir to build the docker image and exposing the service on port 8003
-rw-r--r--docker-compose.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..ea73f9f
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,6 @@
+version: '3'
+services:
+  nfw:
+    build: .
+    ports:
+      - "8003:8000"
\ No newline at end of file