Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add files via upload
khazelton committed Apr 18, 2019
1 parent d1e7995 commit 0bf5e49
Showing 1 changed file with 16 additions and 18 deletions.
34 changes: 16 additions & 18 deletions 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

0 comments on commit 0bf5e49

Please sign in to comment.