Add notes for 2018-09-12

This commit is contained in:
2018-09-12 13:49:33 +03:00
parent 6dd5e7850b
commit 9e7b0bde06
4 changed files with 35 additions and 14 deletions

View File

@ -198,4 +198,14 @@ X-XSS-Protection: 1; mode=block
- I will have to keep an eye on it and perhaps add it to the list of "bad bots" that get rate limited
## 2018-09-12
- Merge AReS explorer changes to nginx config and deploy on CGSpace so CodeObia can start testing more
- Re-create my local Docker container for PostgreSQL data, but using a volume for the database data:
```
$ sudo docker volume create --name dspacetest_data
$ sudo docker run --name dspacedb -v dspacetest_data:/var/lib/postgresql/data -e POSTGRES_PASSWORD=postgres -p 5432:5432 -d postgres:9.6-alpine
```
<!-- vim: set sw=2 ts=2: -->