Removed cron container from debug build
This commit is contained in:
parent
2c8f1ac601
commit
a0e55e4830
3 changed files with 16 additions and 14 deletions
3
fejctl
3
fejctl
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue