forked from PhongT16/outlook_calendar_report_generator
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement docker pull and run to setup.sh
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
REGISTRY=ghcr.io | ||
REPO=ncsa/vacation_calendar_sync | ||
BRANCH=main | ||
|
||
# Pulls the latest image from main branch | ||
docker pull $REGISTRY/$REPO:$BRANCH | ||
|
||
# Change it so that it pulls latest from main | ||
docker pull $REGISTRY/$REPO:main | ||
#docker pull ghcr.io/ncsa/vacation_calendar_sync:1685990588_logging_feature_54634f5 | ||
|
||
#docker run -it --name ncsa_vacation_calendar_sync --mount type=bind,source=$HOME,dst=/home $REGISTRY/$REPO | ||
# Creates a docker container | ||
docker run -it --name ncsa_vacation_calendar_sync --mount type=bind,source=$HOME,dst=/home $REGISTRY/$REPO:$BRANCH |