6 lines
134 B
Bash
6 lines
134 B
Bash
#!/bin/sh
|
|
if [ -z "$(ls -A /config)" ]; then
|
|
cp /app/config-example.yml /config/config.yml
|
|
fi
|
|
|
|
/app/ipe --config=/config/config.yml |