-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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
docker-compose examples #4642
docker-compose examples #4642
Conversation
I think I tried to merge this into the wrong branch. I thought I was merging back into what I branched from but it looks like I did not. |
It looks like I forked from the release tag v2.0.0-alpha2, and because it is a tag not a branch I can't merge back to it. How should I proceed? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, could you rebase?
Could you clarify your requests? Removing Alpha is fine, but I do not understand why My understanding is:
|
could you update your PR (rebase or merge like you want) to get changes from the v2.0 branch. |
It's just the diff in Github 😄 |
Ok great thanks for the clarification. I will rebase tonight and post again here. |
Changes requested has been made. It looks like there is a conflict with the Quick Start sample code. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎈 LGTM 🎈
Thank you for your feedback!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👼
What does this PR do?
I have updated all the occurrences of
image: traefik
to use the Alpha tagimage: traefik:v2.0
. I also corrected the command from--docker
to--providers.docker
. Lastly, I renamedGetting Started
>Configuration Overview
toConfiguration Introduction
. This is because there is alsoConfiguration Discovery
>Overview
, and as both have a large identical image occupying the bulk of the opening page they are easy to confuse I feel. This last change is more of a proposal/suggestion.Motivation
This PR came to life because I was discovering challenges with converting my Traefik v1 docker-compose files to v2. This turned out to be because the v2 Alpha docs appeared to still be using sample docker-compose code from v1.
CHANGES
image: traefik
(4) withimage: traefik:v2.0
--docker
(1) with--providers.docker
Getting Started
fromConfiguration Overview
toConfiguration Introduction
for clarityAdditional Notes
I am very excited about the new changes, and I am looking forward to have time to dig in deeper, learn the changes, and maybe update some more documentation.