This commit is contained in:
David Heinemeier Hansson
2023-01-07 15:32:25 +01:00
commit f7f61f697f
20 changed files with 522 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
class Mrsk::Commands::Traefik
def start
"docker run --name traefik " +
"--rm -d " +
"-p 80:80 " +
"-v /var/run/docker.sock:/var/run/docker.sock " +
"traefik --providers.docker"
end
def stop
"docker container stop traefik"
end
def info
"docker ps --filter name=traefik"
end
end