File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Test plotly.js with the Plotly Image-Server docker container.
4
4
5
+
5
6
### Run the container
6
7
7
8
Inside your ` plotly.js ` directory, run
@@ -70,16 +71,29 @@ docker images
70
71
docker ps -a
71
72
```
72
73
74
+ whereas ` docker ps ` lists only the started containers.
75
+
73
76
### Stop container
74
77
75
78
``` bash
76
79
docker stop [container_id]
77
80
```
78
81
82
+ ### Start an existing container
83
+
84
+ ` docker stop ` does not delete the reference to the plotly/imageserver container
85
+ that you have ` docker run ` . To start an existing container, get its id using
86
+ ` docker ps -a ` and then
87
+
88
+
89
+ ``` bash
90
+ docker start [container_id]
91
+ ```
92
+
79
93
### Remove container
80
94
81
95
``` bash
82
96
docker rm [container_id]
83
97
```
84
98
85
- For more comprehensive information about docker, please refer to [ docker document ] ( http://docs.docker.com/ )
99
+ For more comprehensive information about docker, please refer to [ docker docs ] ( http://docs.docker.com/ )
You can’t perform that action at this time.
0 commit comments