From 24c283bc006b32c3a18975fffdc7138d8285ba6c Mon Sep 17 00:00:00 2001 From: Nadav Spiegelman Date: Wed, 11 Mar 2020 14:35:03 -0400 Subject: [PATCH] Remove outdated example --- docker-compose.yml.example | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 docker-compose.yml.example diff --git a/docker-compose.yml.example b/docker-compose.yml.example deleted file mode 100644 index 5fba2fe4..00000000 --- a/docker-compose.yml.example +++ /dev/null @@ -1,22 +0,0 @@ -version: '3' -services: - node: - image: node:12 - volumes: - - ".:/app" - ports: - - 3000:3000 - - 35729:35729 - working_dir: /app - environment: - - NODE_ENV=development - - CHOKIDAR_USEPOLLING=true - - REACT_APP_FIREBASE_API= - - REACT_APP_FIREBASE_DOMAIN=example.firebaseapp.com - - REACT_APP_FIREBASE_DATABASE=https://example.firebaseio.com - - REACT_APP_FIREBASE_BUCKET=example.appspot.com - - REACT_APP_FIREBASE_SENDER=12345678 - - REACT_APP_API_KEY= - - REACT_APP_API_URL=https://example.herokuapp.com - - REACT_APP_CONNECTWISE_SERVER_URL=https://connectwise.example.com/v1_0_release - command: bash -c "yarn install && yarn start"