Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.2k views
in Technique[技术] by (71.8m points)

How to pass a json-like environment variable to docker run

I'm trying to pass this variable : REGION={'code': 44, 'name': 'grand_est', 'pretty_name': 'Grand Est'} to docker run.

The exact command is:

docker run 
 -e "REGION={'code': 44, 'name': 'grand_est', 'pretty_name': 'Grand Est'}" 
 meteocovid

But I get the error:

docker: invalid reference format.

I can't split the variable REGION into separated variable because the docker container needs it in this exact format and I can't rebuild the variable within the container.

Does anyone have an idea?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try this instead:

docker run 
 -e REGION="{'code': 44, 'name': 'grand_est', 'pretty_name': 'Grand Est'}" 
 meteocovid

You are now passing a string of the "object" which you can then parse in whatever language you're using.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...