Changeset - 8b9e08f45bdf
[Not reviewed]
0 1 0
vitalyster - 8 years ago 2017-06-20 13:58:52
vitalyster@gmail.com
Update docker.md
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
documentation/installation/docker.md
Show inline comments
 
@@ -53,25 +53,25 @@ To start Spectrum 2 on background using Docker, all you have to do is running fo
 

	
 
	$ docker run --name="spectrum2" -d -v /opt/spectrum2/configuration:/etc/spectrum2/transports -v /opt/spectrum2/data:/var/lib/spectrum2 spectrum2/spectrum2
 

	
 
It will start Spectrum 2 and load the configuration files from `/opt/spectrum`. It also gives the spawned container name `spectrum2`.
 

	
 
## Checking the Spectrum 2 logs
 

	
 
To check the Spectrum 2 logs, use following Docker command:
 

	
 
	$ docker logs spectrum2
 

	
 
## Stopping the Spectrum 2
 

	
 
To stop the Spectrum 2 container, use following Docker command:
 

	
 
	$ docker stop spectrum2
 

	
 
## Upgrading the Spectrum 2 container
 

	
 
To upgrade Spectrum 2 container, you at first have to pull the updated Docker image, stop the current container, remove it and start it again using the new version of Docker image. It is very important to have all the Spectrum 2 data stored in the host system as described earlier in this document. Otherwise you won't be able to upgrade running container without loosing the data.
 

	
 
	$ docker pull spectrum2/spectrum2
 
	$ docker stop spectrum2
 
	$ docker rm spectrum2
 
	$ docker run --name="spectrum2" -d -p 5222:5222 -v /opt/spectrum2/configuration:/etc/spectrum2/transports -v /opt/spectrum2/data:/var/lib/spectrum2 spectrum2/spectrum2
 
	$ docker run --name="spectrum2" -d -v /opt/spectrum2/configuration:/etc/spectrum2/transports -v /opt/spectrum2/data:/var/lib/spectrum2 spectrum2/spectrum2
0 comments (0 inline, 0 general)