Skip to content

Instantly share code, notes, and snippets.

@umegaya
Last active August 29, 2015 14:13
Show Gist options
  • Save umegaya/dc79fad22c91d1866fb0 to your computer and use it in GitHub Desktop.
Save umegaya/dc79fad22c91d1866fb0 to your computer and use it in GitHub Desktop.
dockerでLD_PRELOADでライブラリを複数設定する ref: http://qiita.com/umegaya/items/b4e94209921b97ceb1ee
LD_PRELOAD="foo.so bar.so" baz
docker run --rm -e LD_PRELOAD="foo.so bar.so" ...
Unable to find image 'bar.so":latest' locally
FATA[0000] Invalid namespace name (), only [a-z0-9_] are allowed, size between 4 and 30
docker run --rm -e LD_PRELOAD=foo.so:bar.so ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment