# Execute Gotouch

# Run the binary

Execute

gotouch

Gotouch will use default properties yaml (opens new window) if -f/--file argument is not provided. If you have custom properties yaml, execute

gotouch -f path-to-properties-yaml

# Run inside a docker container

Gotouch can be executed inside a docker container. Replace $(pwd) with the path to which you want to create the project.

docker run -it -v $(pwd):/out --rm ghcr.io/denizgursoy/gotouch:latest

If you want to use another properties YAML, you can execute with -f flag:

docker run -it -v $(pwd):/out --rm ghcr.io/denizgursoy/gotouch:latest -f url-of-properties-yaml

WARNING

When you use docker container, -f flag can only be URL. Local path is not supported.