-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
testing: add tzdata to scylla-manager container
- Install tzdata - Set default location to NYC
- Loading branch information
Showing
4 changed files
with
11 additions
and
1 deletion.
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
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,5 +1,6 @@ | ||
export LOCAL_BIN=$PWD/bin | ||
export PATH="$LOCAL_BIN:$PATH" | ||
export TZ="America/New_York" | ||
|
||
export SCYLLA_MANAGER_CLUSTER=xxx | ||
source <(./sctool.dev completion bash) |
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM ubuntu | ||
|
||
# Install 3rd party tools | ||
RUN apt-get update && apt-get install -y tzdata \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
ENV TZ="America/New_York" |