Skip to content

Commit

Permalink
leave value as False on repo code
Browse files Browse the repository at this point in the history
  • Loading branch information
luiztauffer committed Nov 17, 2023
1 parent a4b0b20 commit 3db3562
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/domino/custom_operators/docker_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ def __init__(
mounts = []

# TODO remove - used in DEV only #######################
dev_pieces = True
dev_pieces = False
if dev_pieces:
piece_repo_name = repository_url.split("/")[-1]
#local_repos_path = f"/mnt/shared_storage/Github/{piece_repo_name}"
local_repos_path = f"/home/vinicius/Documents/work/tauffer/{piece_repo_name}"
local_repos_path = f"/mnt/shared_storage/Github/{piece_repo_name}"
# local_repos_path = f"/home/vinicius/Documents/work/tauffer/{piece_repo_name}"
mounts = [
# TODO remove
Mount(source='/home/vinicius/Documents/work/tauffer/domino/src/domino', target='/usr/local/lib/python3.10/site-packages/domino/', type='bind', read_only=True),
#Mount(source='/mnt/shared_storage/Github/domino', target='/usr/local/lib/python3.10/site-packages/domino/', type='bind', read_only=True),
# Mount(source='/home/vinicius/Documents/work/tauffer/domino/src/domino', target='/usr/local/lib/python3.10/site-packages/domino/', type='bind', read_only=True),
Mount(source='/mnt/shared_storage/Github/domino', target='/usr/local/lib/python3.10/site-packages/domino/', type='bind', read_only=True),
Mount(source=local_repos_path, target='/home/domino/pieces_repository/', type='bind', read_only=True),
]
########################################################
Expand Down

0 comments on commit 3db3562

Please sign in to comment.