#How to always run a WithExec?

1 messages · Page 1 of 1 (latest)

last meteor
#

Classic example is with a docker compose up, after first time it run, it's cached, but I want it to ALWAYS run..

The only way I found is by bursting the cache, but I guess there's a better way?

    compose = compose.
        WithEnvVariable("BURST_CACHE", now.String()).
        WithExec([]string{"docker", "compose", "up", "-d"})