From 0bf5e4954caab0a19149ba68d51fa3c4edb556bf Mon Sep 17 00:00:00 2001 From: Keith Hazelton Date: Thu, 18 Apr 2019 11:03:19 -0500 Subject: [PATCH] Add files via upload --- Sources/SIS/docker-compose.yml | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/Sources/SIS/docker-compose.yml b/Sources/SIS/docker-compose.yml index 5133aee..c0939d2 100644 --- a/Sources/SIS/docker-compose.yml +++ b/Sources/SIS/docker-compose.yml @@ -1,19 +1,17 @@ -version: '3' -services: - sis-db: - image: mysql:5.6 - container_name: tier-demo-mysql - environment: - - MYSQL_ROOT_PASSWORD= - - MYSQL_ALLOW_EMPTY_PASSWORD=yes - sis-web: - build: . - image: sis-web - container_name: tier-sis-web - command: /bin/bash /usr/local/bin/run-rails.sh - volumes: - - .:/myapp - ports: - - "3000:3000" - depends_on: +services: + sis-db: + image: mysql:5.6 + container_name: tier-demo-mysql + environment: + - MYSQL_ROOT_PASSWORD= + - MYSQL_ALLOW_EMPTY_PASSWORD=yes + sis-web: + image: sis-web + container_name: tier-sis-web + command: /bin/bash /usr/local/bin/run-rails.sh + volumes: + - .:/myapp + ports: + - "3000:3000" + depends_on: - sis-db