Skip to content

Commit

Permalink
docs(dockerfile): add metadata labels for maintainer, description, pr…
Browse files Browse the repository at this point in the history
…oject, and repository details

Added labels to the Dockerfile to provide metadata about the maintainer, project description, project URL, version control URL, keywords, and image source. This enhances the documentation and discoverability of the Docker image.
  • Loading branch information
obeone committed May 28, 2024
1 parent 8401d89 commit 5c10d32
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,12 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY . .

ENTRYPOINT [ "/usr/local/bin/python", "/usr/src/app/main.py" ]


LABEL maintainer="obeone <[email protected]>"
LABEL description="Automatically connect traefik to docker's services networks which is needed"
LABEL project="traefik_network_connector"
LABEL url="https://github.com/obeone/traefik_network_connector"
LABEL vcs-url="https://github.com/obeone/traefik_network_connector"
LABEL keywords="docker, docker compose, traefik, reverse proxy, network automation, dynamic configuration, TLS support, container management"
LABEL org.opencontainers.image.source https://github.com/obeone/traefik_network_connector

0 comments on commit 5c10d32

Please sign in to comment.