5 lines
185 B
Plaintext
5 lines
185 B
Plaintext
|
docker image build -t "react-redux-course:1.0.19" .
|
||
|
docker run -p 5050:80 -it react-redux-course:1.0.19
|
||
|
|
||
|
Multiple ports:
|
||
|
docker run -p 5050:80 -p 3001:3001 -it react-redux-course:1.0.20
|