Skip to content

Commit

Permalink
enhance verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD committed Jul 1, 2024
1 parent 8b10bb2 commit f863766
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dockerfiles/rclone_with_config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM rclone/rclone:latest
LABEL org.opencontainers.image.source=https://github.com/catalystneuro/neuroconv
LABEL org.opencontainers.image.description="A simple extension of the basic Rclone docker image to automatically create a local .conf file from contents passed via an environment variable."
CMD printf "$RCLONE_CONFIG" > ./rclone.conf && $RCLONE_COMMANNDS
CMD printf "$RCLONE_CONFIG" > ./rclone.conf && echo "$(pwd)" && cat ./rclone.conf && $RCLONE_COMMANNDS
ENTRYPOINT [""]
2 changes: 1 addition & 1 deletion tests/docker_rclone_with_config_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def test_rclone_with_config(self):

os.environ["RCLONE_CONFIG"] = rclone_config_file_stream
os.environ["RCLONE_COMMAND"] = (
f"rclone copy test_google_drive_remote:testing_rclone_with_config {self.test_folder} --verbose"
f"rclone copy test_google_drive_remote:testing_rclone_with_config {self.test_folder} --verbose --progress"
)

output = deploy_process(
Expand Down

0 comments on commit f863766

Please sign in to comment.