Skip to content
Merged
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
5 changes: 4 additions & 1 deletion docs/installation/docker/site-template/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ This documentation assumes you will be building your production image on the pro

## Adding a Staging Site

The process for setting up a staging site is the same as production, but you will need to use a different URL. Since the URL is set in the `.env` file, which is checked into your git repository, you may wish to use `docker-compose.override.yml` for this. In `docker-compose.override.yml` you will need to override anywhere the `DOMAIN` variable is used, for example:
The process for setting up a staging site is the same as production, but you will need to use a different URL. You have two options:

1. You can override the `DOMAIN` environment variable on your staging server by editing its `.env` file
2. Use `docker-compose.override.yml` for this. In `docker-compose.override.yml` you will need to override anywhere the `DOMAIN` variable is used, for example:

```
services:
Expand Down