Please see the [offical wiki for install guides](https://github.com/sharelatex/sharelatex/wiki/Production-Installation-Instructions)
**Please read this entire file before installing ShareLaTeX via Docker. It's only
short but contains some important information.**
## Building image
The recommended way to install and run ShareLaTeX Community Edition is via [Docker](https://www.docker.com/):
```
$ docker run -d \
-v ~/sharelatex_data:/var/lib/sharelatex \
-p 5000:80 \
--name=sharelatex \
sharelatex/sharelatex
```
This will download the ShareLaTeX image and start it running in the background on port 5000. You should be able to access it at http://localhost:5000/.
To stop ShareLaTeX:
```
docker stop sharelatex
```
and to start it again:
```
docker start sharelatex
```
If you want to permanently remove ShareLaTeX from your docker containers:
```
docker rm sharelatex
```
### Operating systems
We recommend a debian based operating system such as Ubuntu for ShareLaTeX, this is what the software has been developed using and most people use when running ShareLaTeX.
### Mongo and Redis
ShareLaTeX depends on [MongoDB](http://www.mongodb.org/)(must be 2.4 or later, 3.x is recommended), and
[Redis](http://redis.io/)(must be version 2.6.12 or later).
These should be running on the host system.
Note that Docker containers each come with their own network stack, and Mongo and Redis
often listen by default on `127.0.0.1` which is not accessible on the host
from inside the Docker container. Instead, you should configure Mongo and Redis to
also listen on `172.17.42.1` (or whatever ip iddress the docker0 interface has on your
host). This can be done in `/etc/mongod.conf` and `/etc/redis/redis.conf`.
```
# /etc/mongod.conf
...
bind_ip = 172.17.42.1
...
```
```
# /etc/redis/redis.conf
...
bind 172.17.42.1
...
```
By default the ShareLaTeX Docker container looks for these running on the host
machine at port 27017 (for Mongo) and port 6379 (for Redis). These are the defaults
ports for both databases so you shouldn't need to change them.
If you want to point ShareLaTeX at a database in a different location, you can
configure the container with environment variables. See the **Configuration Options**
section below.
*Note that `localhost` in the container refers only to the container, so if you
want to access services on the host machine then you should use `dockerhost`.
`dockerhost` refers to the the `172.17.42.1` ip address mentioned above.* For example:
*`SHARELATEX_SITE_URL`: Where your instance of ShareLaTeX is publically available.
This is used in public links, and when connecting over websockets, so must be
configured correctly!
*`SHARELATEX_ADMIN_EMAIL`: The email address where users can reach the person who runs the site.
*`SHARELATEX_APP_NAME`: The name to display when talking about the running app. Defaults to 'ShareLaTex (Community Edition)'.
*`SHARELATEX_MONGO_URL`: The URL of the Mongo database to use
*`SHARELATEX_REDIS_HOST`: The host name of the Redis instance to use
*`SHARELATEX_REDIS_PORT`: The port of the Redis instance to use
*`SHARELATEX_REDIS_PASS`: The password to use when connecting to Redis (if applicable)
*`SHARELATEX_SECURE_COOKIE`: Set this to something non-zero to use a secure cookie.
Only use this if your ShareLaTeX instance is running behind a reverse proxy with SSL configured.
Other settings such as email setup need to be edited in the docker container at /etc/sharelatex/settings.coffee. We realise this is not an ideal solution and are working on a more streamlined settings file approach.
### Creating and Managing users
Uun the following command to create your first user and make them an admin:
This will create a user with the given email address if they don't already exist, and make them an admin user. You will be given a URL to visit where you can set the password for this user and log in for the first time.
**Creating normal users**
Once you are logged in as an admin user, you can visit `/admin/register` on your ShareLaTeX instance and create a new users. If you have an email backend configured in your settings file, the new users will be sent an email with a URL to set their password. If not, you will have to distribute the password reset URLs manually. These are shown when you create a user.
### Upgrading from older versions
*Please make sure to back up all Mongo, Redis and on-disk data before upgrading.*
#### Migrations
Data stored in Mongodb will be automatically migrated to the latest schemea when upgrading docker releases. **This can make downgrades impossible.** One recommended technique is to test the migration first. This can be done by copying the mongodb database and doing a test run against the copied data.
To use the new docker container stop and remove the currently running ShareLaTeX container:
```
$ docker stop sharelatex
$ docker rm sharelatex
```
Start a new container with the updated version of ShareLaTeX (to upgrade to version 1.4.0 for example):
```
$ docker run -d -v ~/sharelatex_data:/var/lib/sharelatex --name=sharelatex sharelatex/sharelatex:1.4.0
```
The docker files can be built with grunt. We do this as there are some other tasks which are done using grunt such as marking the versions of each repo used.