From 9378a1e1d22070f699d17ca5f9269e795cde7232 Mon Sep 17 00:00:00 2001 From: Romain Date: Wed, 16 Sep 2020 09:53:35 +0200 Subject: [PATCH] Refactor: rebranding (#34) --- LICENSE | 1 + Makefile | 4 ++-- README.md | 8 ++++---- go.mod | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/LICENSE b/LICENSE index 8e3c147..68ae492 100644 --- a/LICENSE +++ b/LICENSE @@ -187,6 +187,7 @@ identification within third-party archives. Copyright [2015-2018] [Containous] + Copyright [2020] [Traefik Labs] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Makefile b/Makefile index d2381a1..a62571c 100644 --- a/Makefile +++ b/Makefile @@ -11,10 +11,10 @@ build: CGO_ENABLED=0 go build -a --installsuffix cgo --ldflags="-s" -o whoami image: - docker build -t containous/whoami . + docker build -t traefik/whoami . check: golangci-lint run publish-images: - seihon publish -v "$(TAG_NAME)" -v "latest" --image-name containous/whoami --dry-run=false + seihon publish -v "$(TAG_NAME)" -v "latest" --image-name traefik/whoami --dry-run=false diff --git a/README.md b/README.md index 5f9c871..44635c3 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # whoami -[![Docker Pulls](https://img.shields.io/docker/pulls/containous/whoami.svg)](https://hub.docker.com/r/containous/whoami/) -[![Build Status](https://travis-ci.com/containous/whoami.svg?branch=master)](https://travis-ci.com/containous/whoami) +[![Docker Pulls](https://img.shields.io/docker/pulls/traefik/whoami.svg)](https://hub.docker.com/r/traefik/whoami/) +[![Build Status](https://travis-ci.com/traefik/whoami.svg?branch=master)](https://travis-ci.com/traefik/whoami) Tiny Go webserver that prints os information and HTTP request to output @@ -28,7 +28,7 @@ Tiny Go webserver that prints os information and HTTP request to output ## Examples ```console -$ docker run -d -P --name iamfoo containous/whoami +$ docker run -d -P --name iamfoo traefik/whoami $ docker inspect --format '{{ .NetworkSettings.Ports }}' iamfoo map[80/tcp:[{0.0.0.0 32769}]] @@ -66,5 +66,5 @@ $ curl -v http://localhost:80/health ``` ```console -docker run -d -P -v ./certs:/certs --name iamfoo containous/whoami --cert /certs/cert.cer --key /certs/key.key +docker run -d -P -v ./certs:/certs --name iamfoo traefik/whoami --cert /certs/cert.cer --key /certs/key.key ``` diff --git a/go.mod b/go.mod index 61fec35..497f9b7 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/containous/whoami +module github.com/traefik/whoami go 1.13