Skip to content

Commit

Permalink
Clarify the production docker-compose.yml config
Browse files Browse the repository at this point in the history
  • Loading branch information
maxpatiiuk authored Apr 14, 2023
1 parent a5f415d commit ae6c660
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,18 @@ volumes:
attachments: # the asset-servers attachment files
```
For production use, it's recommended to also add an nginx web server between
the web asset server and the outside world. Example
[nginx.conf](https://github.com/specify/specify7/blob/393538b081eb797beb502204cdea9311179361f6/nginx.conf#L17-L26)
and [docker-compose.yml](https://github.com/specify/specify7/blob/393538b081eb797beb502204cdea9311179361f6/docker-compose.yml#L126-L135).
For development/evaluation, web asset server can be exposed directly. To do so,
add the following lines to your `docker-compose.yml` right after the `asset-server:` line:
```yaml
ports:
- "8080:3306"
```

## Installing system dependencies

The dependencies are:
Expand Down

0 comments on commit ae6c660

Please sign in to comment.