Closed callahad closed 10 years ago
Preliminary work on a Docker version of "How To Run Firefox Sync 1.5"
With the Dockerfile below in the current directory, run:
Dockerfile
docker build -t sync:server .
docker run -i -t -p 5000:5000 sync:server
Use docker ps -a to see all containers, both running and stopped.
docker ps -a
Use docker stop <container_id> to stop a running container.
docker stop <container_id>
Use docker start <container_id> to start a running container.
docker start <container_id>
about:config
services.sync.tokenServerURI
http://localhost:5000/token/1.0/sync/1.5
http://localhost:5000
Preliminary work on a Docker version of "How To Run Firefox Sync 1.5"
Prerequisites
Building and running the server
With the
Dockerfile
below in the current directory, run:docker build -t sync:server .
docker run -i -t -p 5000:5000 sync:server
Starting / Stopping the Sync service
Use
docker ps -a
to see all containers, both running and stopped.Use
docker stop <container_id>
to stop a running container.Use
docker start <container_id>
to start a running container.Using the server
about:config
, changeservices.sync.tokenServerURI
tohttp://localhost:5000/token/1.0/sync/1.5
http://localhost:5000