Compare commits
2 commits
86d607c12f
...
7a65c04a4d
| Author | SHA1 | Date | |
|---|---|---|---|
| 7a65c04a4d | |||
| c8edde4d11 |
7 changed files with 22 additions and 11 deletions
|
|
@ -1,7 +1,7 @@
|
|||
# renovate: datasource=docker depName=git.hamburg.ccc.de/ccchh/oci-images/nextcloud
|
||||
nextcloud__version: 32
|
||||
# renovate: datasource=docker depName=docker.io/library/postgres
|
||||
nextcloud__postgres_version: 15.15
|
||||
nextcloud__postgres_version: 18.1
|
||||
nextcloud__fqdn: cloud.hamburg.ccc.de
|
||||
nextcloud__data_dir: /data/nextcloud
|
||||
nextcloud__extra_configuration: "{{ lookup('ansible.builtin.template', 'resources/chaosknoten/cloud/nextcloud/extra_configuration.config.php.j2') }}"
|
||||
|
|
|
|||
|
|
@ -4,14 +4,21 @@
|
|||
<style>
|
||||
table, tr, th, td {
|
||||
border-collapse: collapse;
|
||||
border: 1px solid black;
|
||||
}
|
||||
caption {
|
||||
caption-side: bottom;
|
||||
padding: 2px 4px;
|
||||
}
|
||||
th, td {
|
||||
border: 1px solid black;
|
||||
padding: 2px 4px;
|
||||
}
|
||||
th {
|
||||
text-align: left;
|
||||
}
|
||||
td {
|
||||
font-family: "Courier", monospace;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
|
@ -24,19 +31,23 @@ th {
|
|||
|
||||
<table id="results" style="display: none">
|
||||
<tr>
|
||||
<th>Full Domain</th><td id="fulldomain">foo</td>
|
||||
<th>Full Domain</th><td id="fulldomain">undefined</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Sub Domain</th><td id="subdomain">foo</td>
|
||||
<th>Subdomain</th><td id="subdomain">undefined</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Username</th><td id="username">foo</td>
|
||||
<th>X-Api-User</th><td id="username">undefined</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Password</th><td id="password">foo</td>
|
||||
<th>X-Api-Key</th><td id="password">undefined</td>
|
||||
</tr>
|
||||
<caption><b>Important!</b> This information will only be shown once. Please
|
||||
copy or otherwise save it immediately.</caption>
|
||||
</table>
|
||||
|
||||
<p><b>Note: there is no way to delete registrations.</b> Each registration is small, so it's not an immediate problem, but please do not click register unless you are planning to really create a new entry.</p>
|
||||
|
||||
<script>
|
||||
document.getElementById("register").addEventListener("click", (event) => {
|
||||
const register = async () => {
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ services:
|
|||
- "8080:8080"
|
||||
|
||||
db:
|
||||
image: docker.io/library/postgres:15.15
|
||||
image: docker.io/library/postgres:18.1
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- keycloak
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ services:
|
|||
- POSTGRES_DB=mailmandb
|
||||
- POSTGRES_USER=mailman
|
||||
- POSTGRES_PASSWORD=wvQjbMRnwFuxGEPz
|
||||
image: docker.io/library/postgres:12-alpine
|
||||
image: docker.io/library/postgres:18-alpine
|
||||
volumes:
|
||||
- /opt/mailman/database:/var/lib/postgresql/data
|
||||
networks:
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
services:
|
||||
database:
|
||||
image: docker.io/library/postgres:15-alpine
|
||||
image: docker.io/library/postgres:18-alpine
|
||||
environment:
|
||||
- "POSTGRES_USER=hedgedoc"
|
||||
- "POSTGRES_PASSWORD={{ secret__hedgedoc_db_password }}"
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
services:
|
||||
database:
|
||||
image: docker.io/library/postgres:15-alpine
|
||||
image: docker.io/library/postgres:18-alpine
|
||||
environment:
|
||||
- "POSTGRES_USER=pretalx"
|
||||
- "POSTGRES_PASSWORD={{ secret__pretalx_db_password }}"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
services:
|
||||
database:
|
||||
image: docker.io/library/postgres:15-alpine
|
||||
image: docker.io/library/postgres:18-alpine
|
||||
environment:
|
||||
- "POSTGRES_USER=pretix"
|
||||
- "POSTGRES_PASSWORD={{ secret__pretix_db_password }}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue