I actually quite like:
((comp dorun map) my-func '(1 2 3))
It's a good example of "point free style" in Clojure. The higher order function (comp dorun map) is potentially useful elsewhere.... you might name it "apply-to-sequence" or something similar.
You could also use the following (amalloy's suggestion) which is also points-free and probably a bit more idiomatic:
(dorun (map my-func '(1 2 3)))
However be aware that both solutions using map will construct an intermediate (lazy) sequence to hold the result of the map function. This implies a small amount of extra overhead, so if you care about performance then I think the standard way using doseq is better, i.e..
(doseq [x '(1 2 3)] (my-func x))