Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implementation of docker-cloud project #39

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
Open

Conversation

tgvashworth
Copy link
Collaborator

@tgvashworth tgvashworth commented Sep 20, 2022

  • Initial commit of docker-cloud project
  • Initial commit of IMPLEMENTATION.md

This includes the README.md commit for the main branch which will be rebased out once #38 is merged.


View rendered README.md
View rendered docker-cloud/IMPLEMENTATION.md
View rendered docker-cloud/README.md

@tgvashworth tgvashworth changed the title impl/docker cloud Implementation of docker-cloud project Sep 20, 2022
@tgvashworth tgvashworth self-assigned this Sep 20, 2022
@tgvashworth tgvashworth added this to the Sprint 1 Complete milestone Sep 20, 2022
@tgvashworth tgvashworth force-pushed the impl/docker-cloud branch 3 times, most recently from 14ce468 to 2719a9d Compare September 20, 2022 19:32
@tgvashworth tgvashworth linked an issue Sep 20, 2022 that may be closed by this pull request
@tgvashworth tgvashworth force-pushed the impl/docker-cloud branch 6 times, most recently from 684c195 to 28aa11b Compare September 20, 2022 21:19
Copy link
Member

@illicitonion illicitonion left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks great - I think this is an achievable amount of work, and covers a good amount of functionality to be both approachable and useful.

(I'm not sure how much to be "useful wording/grammar" reviewing IMPLEMENTATION.mds absent README.mds... Did some review!)

docker-cloud/Dockerfile Outdated Show resolved Hide resolved
docker-cloud/Dockerfile Show resolved Hide resolved
docker-cloud/IMPLEMENTATION.md Outdated Show resolved Hide resolved
docker-cloud/IMPLEMENTATION.md Outdated Show resolved Hide resolved
docker-cloud/IMPLEMENTATION.md Outdated Show resolved Hide resolved
docker-cloud/main_test.go Outdated Show resolved Hide resolved
Comment on lines 44 to 45
t.Log(resource.GetPort("8080/tcp"))
resp, err = http.Get(fmt.Sprint("http://localhost:", resource.GetPort("8080/tcp"), "/ping"))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
t.Log(resource.GetPort("8080/tcp"))
resp, err = http.Get(fmt.Sprint("http://localhost:", resource.GetPort("8080/tcp"), "/ping"))
port := resource.GetPort("8080/tcp")
t.Log(port)
resp, err = http.Get(fmt.Sprint("http://localhost:", port, "/ping"))

docker-cloud/main_test.go Outdated Show resolved Hide resolved
docker-cloud/main_test.go Outdated Show resolved Hide resolved
docker-cloud/main_test.go Outdated Show resolved Hide resolved
To accelerate this project, we'll begin with a set of tutorials which
introduce the concepts with real-world use. Just this will take several
hours for someone who hasn't done this before. Then the project will be
to bring it all together: the implementation will do this, hopefully
also including CI/CD.
workflow_dispatch does not work becuase the workflow file is not on the
main branch yet.
@tgvashworth tgvashworth removed this from the Sprint 1 Complete milestone Sep 25, 2022
@tgvashworth tgvashworth reopened this Sep 25, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Develop project to introduce Docker and cloud deployment
2 participants