Skip to content

Commit

Permalink
use LATEST by default
Browse files Browse the repository at this point in the history
  • Loading branch information
maaikelimper committed Jan 10, 2025
1 parent 92bae5c commit 774fccf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions wis2box-ctl.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,9 @@ def make(args) -> None:
build_local_images()
update_docker_images(LOCAL)
elif args.command in ["up", "start", "start-dev"]:
# if docker-compose.yml does not exist, run update to create it
if not os.path.exists('docker-compose.yml'):
update_docker_images(LATEST)
run(split(
'docker plugin install grafana/loki-docker-driver:latest --alias loki --grant-all-permissions'),
silence_stderr=True)
Expand Down

0 comments on commit 774fccf

Please sign in to comment.