2022-10-07 18:48:26 -04:00
2022-09-08 10:40:22 -04:00
2022-09-08 10:41:28 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2022-02-14 16:47:44 -05:00
2022-10-03 10:32:43 -04:00
🗃️ modified: .gitignore 🗃️
2022-07-09 13:27:12 -04:00
2022-10-07 18:48:26 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2022-02-14 16:47:44 -05:00
2022-09-08 10:51:31 -04:00

👋 Welcome to traefik 🚀

traefik README

Run container

dockermgr update traefik

via command line

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

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 Docker 🤖
CasjaysDevdDocker: Github Docker

Description
Docker build files for traefix
Readme 62 KiB
Languages
Shell 90.2%
Dockerfile 9.8%