You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			| 
				
					 | 
			3 years ago | |
|---|---|---|
| .gitignore | 3 years ago | |
| Dockerfile | 3 years ago | |
| README.md | 3 years ago | |
| boot.py | 3 years ago | |
		
			
				
				README.md
			
		
		
	
	Quick Start
Start a syncplay service at tcp/8999, you can also specify a password.
docker run -d \
--network host \
--name syncplay \
--env PORT=<PORT> \
--env PASSWORD=<PASSWORD> \
dnomd343/syncplay
If TLS is enabled, you have to set certificate folder with privkey.pem, cert.pem and chain.pem.
docker run -d \
--network host \
--name syncplay \
--env PORT=<PORT> \
--env PASSWORD=<PASSWORD> \
--env TLS=/certs \
--volume <certs>:/certs \
dnomd343/syncplay
You can get more information on the official documentation.