Update notes for 2019-02-14

This commit is contained in:
2019-02-14 02:03:32 +02:00
parent 2a854e9687
commit e2a80e1f33
2 changed files with 22 additions and 1 deletions

View File

@ -604,5 +604,15 @@ $ dspace user --add --givenname Thierry --surname Lewyllie --email blah@cta.int
- On this note, I saw a thread on the dspace-tech mailing list that says this functionality exists if you enable `webui.user.assumelogin = true`
- I will enable this on CGSpace ([#411](https://github.com/ilri/DSpace/pull/411))
- Test re-creating my local PostgreSQL and Artifactory containers with podman instead of Docker (using the volumes from my old Docker containers though):
```
# podman pull postgres:9.6-alpine
# podman run --name dspacedb -v /home/aorth/.local/lib/containers/volumes/dspacedb_data:/var/lib/postgresql/data -e POSTGRES_PASSWORD=postgres -p 5432:5432 -d postgres:9.6-alpine
# podman pull docker.bintray.io/jfrog/artifactory-oss
# podman run --name artifactory -d -v /home/aorth/.local/lib/containers/volumes/artifactory5_data:/var/opt/jfrog/artifactory -p 8081:8081 docker.bintray.io/jfrog/artifactory-oss
```
- Totally works... awesome!
<!-- vim: set sw=2 ts=2: -->