Last active
August 29, 2015 14:13
-
-
Save umegaya/dc79fad22c91d1866fb0 to your computer and use it in GitHub Desktop.
dockerでLD_PRELOADでライブラリを複数設定する ref: http://qiita.com/umegaya/items/b4e94209921b97ceb1ee
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LD_PRELOAD="foo.so bar.so" baz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run --rm -e LD_PRELOAD="foo.so bar.so" ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Unable to find image 'bar.so":latest' locally | |
FATA[0000] Invalid namespace name (), only [a-z0-9_] are allowed, size between 4 and 30 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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