Removed cron container from debug build

This commit is contained in:
Jef Roosens 2021-04-17 21:39:29 +02:00
parent 2c8f1ac601
commit a0e55e4830
Signed by: Jef Roosens
GPG key ID: B580B976584B5F30
3 changed files with 16 additions and 14 deletions

3
fejctl
View file

@ -31,6 +31,7 @@ function dc() {
if [[ "$release" -eq 1 ]]; then
DOCKER_BUILDKIT=1 COMPOSE_DOCKER_CLI_BUILD=1 docker-compose \
--file docker/docker-compose.yml \
--file docker/docker-compose.override.yml \
--project-name fej \
"$@"
@ -112,7 +113,7 @@ function main() {
l | logs ) dc -- logs -f app ;;
lint ) cargo fmt -- --check ;;
p | push | publish ) publish ;;
t | test ) dc test --no-fail-fast ;;
t | test ) dcr -- test --no-fail-fast && dc -- logs -f app ;;
* ) >&2 echo "Invalid command."; exit 1 ;;
esac
}