Skip to content

Commit

Permalink
add wis2box-auth to docker dev setup
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkralidis committed Sep 10, 2023
1 parent 36df78c commit fef5ff1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ services:
volumes:
- ../wis2box-api/wis2box_api:/app/wis2box_api

wis2box-auth:
volumes:
- ../wis2box-auth/wis2box_auth:/app/wis2box_auth

elasticsearch:
ports:
- 9200:9200
2 changes: 1 addition & 1 deletion wis2box-ctl.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def make(args) -> None:
run(args, split(f"{DOCKER_COMPOSE_COMMAND} {docker_compose_args} start {containers}"))
else:
if args.command == 'start-dev':
run(args, split(f'{DOCKER_COMPOSE_COMMAND} {docker_compose_args} --file docker-compose.dev.yml up'))
run(args, split(f'{DOCKER_COMPOSE_COMMAND} {docker_compose_args} --file docker-compose.dev.yml up -d'))
else:
run(args, split(f'{DOCKER_COMPOSE_COMMAND} {docker_compose_args} up -d'))
elif args.command == "execute":
Expand Down

0 comments on commit fef5ff1

Please sign in to comment.