Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/helightdev/synapsedocker
A docker image used to run a modded Synapse SCP: Secret Laboratory Server
https://github.com/helightdev/synapsedocker
docker scp-secret-laboratory scp-sl synapse synapsesl
Last synced: about 1 month ago
JSON representation
A docker image used to run a modded Synapse SCP: Secret Laboratory Server
- Host: GitHub
- URL: https://github.com/helightdev/synapsedocker
- Owner: helightdev
- License: gpl-3.0
- Created: 2020-12-22T00:32:45.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-03T00:10:01.000Z (over 3 years ago)
- Last Synced: 2023-03-10T18:27:42.766Z (over 1 year ago)
- Topics: docker, scp-secret-laboratory, scp-sl, synapse, synapsesl
- Language: Dockerfile
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
A docker image used to run a modded Synapse SCP: Secret Laboratory Server
---
## Running Synapse
### Recommended:
```shell
docker run -itd -p 7777:7777/udp -v /home/sl/synapse/:/Synapse -v /home/sl/vanilla:/vancfg --restart=always --name Synapse helightdev/synapsesl
```You can run a basic non-configured version Synapse using
```shell
docker run -itd -p 7777:7777/udp helightdev/synapsesl
```
However you can also hook a volume to the Synapse directory (The directory doesn't
have to contain Synapse-Files since required files will be copied to the volume
if they don't already exist)
```shell
printf "Here I used the /home/scpsl/synapse directory as synapse volume"
docker run -itd -p 7777:7777/udp -v /home/scpsl/synapse:/Synapse helightdev/synapsesl
```
You can also hook the vanilla config/7777 folder to another directory
```shell
printf "Here I used the /home/scpsl/synapse directory as synapse volume and /home/scpsl/vanilla as vanilla config source"
docker run -itd -p 7777:7777/udp -v /home/scpsl/synapse:/Synapse -v /home/scpsl/vanilla:/vancfg helightdev/synapsesl
```## Using Plugins & Synapse Configs
You have to mount a directory to /Synapse like in the second and third run-example.
After that, you can place your plugins in either "plugins/server-shared" or "plugins/server-7777".
You can access the configuration in the same manner using "configs/server-shared" or "configs/server-7777"## Credits
[ServerMod/Multiadmin](https://github.com/ServerMod/MultiAdmin "MultiAdmin Repo")