397e4978e2
- use latest tag - use launcher (which builds and deploys the docker compose) - small fixes - updated README
16 lines
149 B
Bash
Executable file
16 lines
149 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
set -u
|
|
# DEBUG
|
|
set -x
|
|
|
|
main() {
|
|
cd "$(dirname "${0}")"
|
|
|
|
make docker_build
|
|
docker compose up
|
|
}
|
|
|
|
main "${@}"
|