Crond now runs in container (#29)

This commit is contained in:
Jef Roosens 2021-04-17 18:20:59 +02:00
parent 6beca85154
commit e62cd0bb93
Signed by: Jef Roosens
GPG key ID: B580B976584B5F30
4 changed files with 9 additions and 4 deletions

3
fejctl
View file

@ -11,7 +11,6 @@ function dc() {
local OPTIND c build_builder release
while getopts ":br" c; do
echo "$c"
case $c in
b ) build_builder=1 ;;
r ) release=1 ;;
@ -99,7 +98,7 @@ function main() {
# Running
r | run ) dcr run --bin "$bin" && dc -- logs -f app ;;
rr | run-release ) dc -br -- run --build --detach ;;
rr | run-release ) dc -br -- up --build --detach && dc -r -- logs -f app ;;
s | stop ) dc down ;;
sr | stop-release ) dc -r stop ;;