Update notes for 2019-02-14

This commit is contained in:
Alan Orth 2019-02-14 02:03:32 +02:00
parent 2a854e9687
commit e2a80e1f33
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
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: -->

View File

@ -89,7 +89,7 @@ sys 0m1.979s
"@type": "BlogPosting",
"headline": "February, 2019",
"url": "https://alanorth.github.io/cgspace-notes/2019-02/",
"wordCount": "3310",
"wordCount": "3367",
"datePublished": "2019-02-01T21:37:30&#43;02:00",
"dateModified": "2019-02-13T18:06:47&#43;02:00",
"author": {
@ -845,6 +845,17 @@ $ dspace user --add --givenname Thierry --surname Lewyllie --email blah@cta.int
<ul>
<li>On this note, I saw a thread on the dspace-tech mailing list that says this functionality exists if you enable <code>webui.user.assumelogin = true</code></li>
<li>I will enable this on CGSpace (<a href="https://github.com/ilri/DSpace/pull/411">#411</a>)</li>
<li>Test re-creating my local PostgreSQL and Artifactory containers with podman instead of Docker (using the volumes from my old Docker containers though):</li>
</ul>
<pre><code># 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
</code></pre>
<ul>
<li>Totally works&hellip; awesome!</li>
</ul>
<!-- vim: set sw=2 ts=2: -->