Add Dockerfile with integrated dataGenerator#1
Open
dagyu wants to merge 4 commits into
Open
Conversation
Author
|
With the committ 16bf4f3 to enhance usability I just add EDIT |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi,
I just add a Dockerfile to simplify the usage of dataGenerator "library".
Furthermore I advise you to use the fantastic feature provided by Github Packages that allows you to upload a docker file and use Github as a registry, so to start with our exercise we have just to run these commands:
#only the first time in order to download the image docker pull docker.pkg.github.com/brcondor/Architectures_For_Big_Data/IMAGE_NAME:latest docker run -p 8888:8888 IMAGE_NAMEHere there is a guide that allows you to upload a docker image in github.
Caveat (Login with docker)
The first time everyone (who push and who pull) should be logged into github package that is a pretty simple task, in a nutshell
read:packages(andwrite:packagesonly for pushing permission)~/TOKEN.txt(or anywhere you want)$ cat ~/TOKEN.txt | docker login https://docker.pkg.github.com -u USERNAME --password-stdin