https://github.com/acaranta/mozilla-syncserver-dockerfile
This is a dockerfile to build and run Mozilla SyncServer within a docker container
https://github.com/acaranta/mozilla-syncserver-dockerfile
Last synced: about 1 year ago
JSON representation
This is a dockerfile to build and run Mozilla SyncServer within a docker container
- Host: GitHub
- URL: https://github.com/acaranta/mozilla-syncserver-dockerfile
- Owner: acaranta
- Created: 2014-07-11T12:46:54.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-07-12T12:07:16.000Z (almost 12 years ago)
- Last Synced: 2023-06-29T23:10:21.853Z (almost 3 years ago)
- Language: Shell
- Size: 151 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
mozilla-syncserver-dockerfile
=============================
This is a dockerfile to build and run Mozilla SyncServer within a docker container
It is based on https://github.com/mozilla-services/syncserver
See https://github.com/acaranta/mozilla-syncserver-dockerfile/blob/BuildOnIndex/README.md for install instructions.
Running
-------
Basically, to run :
```
docker run -p 5000:5000 acaranta/mozilla-syncserver
```
If you want to fiddle with configuration, on your host :
```
mkdir -p /whateveryoulike/syncserver
wget https://raw.githubusercontent.com/mozilla-services/syncserver/master/syncserver.ini -O /whateveryoulike/syncserver/config.ini
#edit your config file
docker run -v /whateveryoulike/syncserver:/opt/syncserver -p 5000:5000 acaranta/mozilla-syncserver
```