-
Notifications
You must be signed in to change notification settings - Fork 1
deploying to dockerhub
Tomo edited this page Jul 27, 2022
·
2 revisions
-
Start by cloning the repo:
git clone https://github.com/dreamfactorysoftware/df-docker-base.git
-
Checkout a branch:
git checkout -b <branch_name>
-
Make your changes and please provide comments in the file highlighting what has changed.
-
Add, commit, and push your changes to your branch. Once you're happy merge to develop, and then to master.
-
Dockerhub no will no longer build an image automatically from github on the free tier. As a result you will need to build it yourself locally. Add a tag, whether preexisting or a new one
docker build -t dreamfactorysoftware/df-base-img:<TAG> . --no-cache
- Push the image to Dockerhub:
docker push dreamfactorysoftware/df-base-img:<TAG>