casjay 66aa6aa9fa
Some checks failed
release-tag / release-image (push) Has been cancelled
🗃️ rootfs: shield internal entrypoint PID files from /run/*.pid sweeps 🗃️
Update the embedded entrypoint copies in rootfs/ to match the
upstream template change. Internal state files renamed to dotfiles
so they're not matched by `/run/*.pid` cleanup globs:
- /run/init.d/entrypoint.pid -> /run/.entrypoint.pid
- /run/no_exit.pid -> /run/.no_exit.pid
- /run/backup.pid -> /run/.backup.pid
- /run/__start_init_scripts.pid -> /run/.start_init_scripts.pid
Per-service PIDs in /run/init.d/ are unchanged.

rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/etc/docker/functions/entrypoint.sh
rootfs/usr/local/share/template-files/config/env/default.sample
rootfs/usr/local/share/template-files/config/env/examples/zz-entrypoint.sh
2026-05-05 19:13:23 -04:00
2025-02-04 09:30:17 -05:00
🗃️ Updated domain names 🗃️
2023-08-10 19:57:48 -04:00
2022-09-08 10:41:28 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2022-02-14 16:47:44 -05:00
2023-01-08 11:22:11 -05:00
2025-09-16 19:38:55 -04:00
2025-09-16 19:38:55 -04:00
2025-11-23 08:48:28 -05:00
2023-01-08 11:22:11 -05:00
2025-11-29 11:05:09 -05:00
2025-09-05 13:37:10 -04:00
🗃️ Updated domain names 🗃️
2023-08-10 19:57:48 -04: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 462 KiB
Languages
Shell 91.8%
Dockerfile 8.2%