7 lines
208 B
Bash
7 lines
208 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Startup the db container
|
||
|
docker-compose start shimatta-kenkyusho-db
|
||
|
|
||
|
# Override entrypoint to get interactive shell
|
||
|
docker-compose run --entrypoint="/bin/sh" -p 8000:8000 shimatta-kenkyusho-web
|