* Moved datastore/text/ code to datastore/ since there is only one type of datastore. * Added "magic script line" to test script for sourced and scriped exits
16 lines
264 B
Bash
Executable file
16 lines
264 B
Bash
Executable file
#!/bin/bash
|
|
# Usage: ./startup.sh
|
|
# Debug: DBG=1 ./startup.sh
|
|
# See also cleanup.sh
|
|
|
|
>&2 echo "Running script: $0"
|
|
|
|
|
|
# Start clixon-example backend
|
|
sudo docker run --name clixon --rm -td clixon/clixon || err "Error starting clixon"
|
|
|
|
>&2 echo "clixon started"
|
|
|
|
|
|
|
|
|