Skip to content

Commit

Permalink
Refactor: rebranding (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtribotte authored Sep 16, 2020
1 parent 1ef6823 commit 9378a1e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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}]]
Expand Down Expand Up @@ -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
```
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/containous/whoami
module github.com/traefik/whoami

go 1.13

Expand Down

0 comments on commit 9378a1e

Please sign in to comment.