Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document creation of data directory in SETUP.md #79

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions SETUP.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,17 @@ The following instructions are essentially independent of the cloud provider and

3. Get a fully-qualified domain name (FQDN) for the server, for which the DNS can be controlled. Point it to the server. Make sure it works, using "`dig FQDN`" -- get back an `A` record pointing to your server's IP address.

### Create a data directory for your server

We recommend that the directory be named `/var/docker/dashboard.example.com`; but it can be anything. You'll need the name below. Here's a sample for creating it:

```bash
sudo mkdir /var/docker
sudo mkdir /var/docker/dashboard.example.com
```

Note, therefore, that the _code_ for your dashboard lives at `/opt/docker/dashboard.example.com`. The _data_ for your dashboard lives at `/var/docker/dashboard.example.com`.

### Create and edit the .env file

First, create a .env file. The following comand sequence can be cut and paste to generate an empty template:
Expand Down