Created
April 27, 2020 00:23
-
-
Save Rolilink/ef9a09aecda13d8e99f9f3079742bc71 to your computer and use it in GitHub Desktop.
traefik dockerfile
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
FROM traefik | |
# exposing port 80 for web communication | |
EXPOSE 80 | |
# exposing port 8080 for dashboard access | |
EXPOSE 8080 | |
# this will let us load the static initial configuration | |
COPY .docker/skel / | |
WORKDIR / | |
CMD [ "traefik" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment