tiagof
Repos
13
Followers
3
Following
2

Events

Created at 2 weeks ago
Created at 1 month ago
Created at 1 month ago
Created at 2 months ago
issue comment
Adds support for commands to be passed with start/run command

Sure! Done.

Created at 3 months ago

Add description and example of setCommands

Created at 3 months ago
pull request opened
Adds support for commands to be passed with start/run command

Adds support for passing commands after the image name.

Example of such commands are adding --log.level=INFO --api.insecure=true in the following run: docker run -p 8080:8080 traefik:v2.3 --log.level=INFO --api.insecure=true

Example of a docker-compose.yml file section of such commands:

services:
  traefik:
    image: "traefik:v2.9"
    [...]
    command:
      - "--api.insecure=true"
      - "--providers.docker=true"
      - "--providers.docker.exposedbydefault=false"
      - "--entrypoints.web.address=:80"
    ports:
        [...]
Created at 3 months ago
create branch
tiagof create branch feature/add-support-for-commands
Created at 3 months ago
Created at 3 months ago