Sha256: e6d41be7b1f9d654243ec8c390d17f74e0cada1ceeed5d0e70f4579f7cea1a06
Contents?: true
Size: 849 Bytes
Versions: 4
Compression:
Stored size: 849 Bytes
Contents
## Examples You can use the `--command` or `-c` option to override the Docker container command. ufo task hi-migrate # default command ufo task hi-web --command bin/migrate ufo task hi-web --command bin/with_env bundle exec rake db:migrate:redo VERSION=xxx ufo task hi-web -c uptime ufo task hi-web -c pwd ## Skipping Docker The `--no-docker` option is useful. By default, the `ufo task` command will build the docker image. The docker build process usually is the part that takes the most time. You can skip the docker build process after building it at least once. This is a faster way to run a bunch of commands with thesame Docker image. Example: ufo task hi-web -c uptime # build at least once ufo task hi-web --no-docker -c ls # skip docker for speed ufo task hi-web --no-docker -c pwd # skip docker for speed
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
ufo-3.5.7 | lib/ufo/help/task.md |
ufo-3.5.6 | lib/ufo/help/task.md |
ufo-3.5.5 | lib/ufo/help/task.md |
ufo-3.5.4 | lib/ufo/help/task.md |