From 875bee2348a622722c3d3f12ba8fc53aefa7302e Mon Sep 17 00:00:00 2001 From: Josh Burman Date: Wed, 27 Feb 2019 14:00:42 -0500 Subject: [PATCH] docker-compose added --- docker-compose.yml | 16 ++++++++++++++++ server.js | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..e9cd7a9 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,16 @@ +braid: + build: /apps/braid/.docker-compose + environment: + VIRTUAL_HOST: ysbraid.localhost + HTTPS_METHOD: nohttps + MEASURE_BASE_URL: http://admin.localhost + dns: + - 172.17.0.1 + volumes: + - /apps/braid:/app + volumes_from: + - clean_bundle +clean_bundle: + image: busybox + volumes: + - /bundle diff --git a/server.js b/server.js index ea461e9..4b3f73a 100755 --- a/server.js +++ b/server.js @@ -9,7 +9,7 @@ const HOST = '0.0.0.0'; // App const app = express(); app.get('/', (req, res) => { - res.send('Hello worlds?\n'); + res.send('Hello worlds????\n'); }); app.listen(PORT, HOST);