From 87ab47500ba1a420427f1e3701d9642db3c56905 Mon Sep 17 00:00:00 2001 From: casjay Date: Thu, 8 Sep 2022 10:51:31 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=83=EF=B8=8F=20Committing=20everything?= =?UTF-8?q?=20that=20changed=20=F0=9F=97=83=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 57 ++++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 48 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 14cff52..253fbbc 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,49 @@ -

-👋 Welcome to traefix 👋 -

-

-StartDocumentationHere -

- -## Author +## 👋 Welcome to traefik 🚀 -👤 **Jason Hempstead** +traefik README + + +## Run container + +```shell +dockermgr update traefik +``` + +### via command line + +```shell +docker pull casjaysdevdocker/traefik:latest && \ +docker run -d \ +--restart always \ +--name casjaysdevdocker-traefik \ +--hostname casjaysdev-traefik \ +-e TZ=${TIMEZONE:-America/New_York} \ +-v $HOME/.local/share/docker/storage/traefik/traefik/data:/data \ +-v $HOME/.local/share/docker/storage/traefik/traefik/config:/config \ +-p 80:80 \ +casjaysdevdocker/traefik:latest +``` + +### via docker-compose + +```yaml +version: "2" +services: + traefik: + image: casjaysdevdocker/traefik + container_name: traefik + environment: + - TZ=America/New_York + - HOSTNAME=casjaysdev-traefik + volumes: + - $HOME/.local/share/docker/storage/traefik/data:/data:z + - $HOME/.local/share/docker/storage/traefik/config:/config:z + ports: + - 80:80 + restart: always +``` + +## Authors + +🤖 casjay: [Github](https://github.com/casjay) [Docker](https://hub.docker.com/r/casjay) 🤖 +⛵ CasjaysDevdDocker: [Github](https://github.com/casjaysdev) [Docker](https://hub.docker.com/r/casjaysdevdocker) ⛵