You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-8Lines changed: 12 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -243,8 +243,10 @@ which should show the state of the services to all be `Up`. If any services have
243
243
Take care to include the right config files as in the commands below.
244
244
245
245
```sh
246
-
docker compose -f docker-compose.yml -f docker-compose.ssl.yml down
247
-
docker compose -f docker-compose.yml -f docker-compose.ssl.yml up -d
246
+
# Include docker-compose.insecure-configuration.yml if using a self-signed certificate
247
+
# Omit docker-compose.postgres.yml if self-hosting your postgres server
248
+
docker compose -f docker-compose.yml -f docker-compose.ssl.yml -f docker-compose.postgres.yml down
249
+
docker compose -f docker-compose.yml -f docker-compose.ssl.yml -f docker-compose.postgres.yml up -d
248
250
```
249
251
250
252
If the issues persist then please contact CCDC Support.
@@ -321,10 +323,11 @@ For other optional customisations to your WebCSD server please see [WebCSD Confi
321
323
To change your license key you must delete the license volume and restart the stack:
322
324
323
325
```sh
324
-
# Append -f docker-compose.insecure-configuration.yml and docker-compose.postgres.yml if needed.
325
-
docker compose -f docker-compose.yml -f docker-compose.ssl.yml down
326
+
# Include docker-compose.insecure-configuration.yml if using a self-signed certificate
327
+
# Omit docker-compose.postgres.yml if self-hosting your postgres server
328
+
docker compose -f docker-compose.yml -f docker-compose.ssl.yml -f docker-compose.postgres.yml down
326
329
rm -r lic
327
-
docker compose -f docker-compose.yml -f docker-compose.ssl.yml up -d
330
+
docker compose -f docker-compose.yml -f docker-compose.ssl.yml -f docker-compose.postgres.yml up -d
328
331
```
329
332
330
333
## Updates
@@ -344,10 +347,11 @@ Contact CCDC Support for the latest download link.
344
347
For major releases export any in-house databases, recreate the csd-database and [restore](https://github.com/ccdc-opensource/on-site-webcsd/wiki/Setting-up-a-self%E2%80%90hosted-PostgreSQL-server#restore-database) it with a new database dump provided by Support.
345
348
346
349
```sh
347
-
# Append -f docker-compose.insecure-configuration.yml and docker-compose.postgres.yml if needed.
348
-
docker compose -f docker-compose.yml -f docker-compose.ssl.yml down
350
+
# Include docker-compose.insecure-configuration.yml if using a self-signed certificate
351
+
# Omit docker-compose.postgres.yml if self-hosting your postgres server
352
+
docker compose -f docker-compose.yml -f docker-compose.ssl.yml -f docker-compose.postgres.yml down
349
353
docker compose pull
350
-
docker compose -f docker-compose.yml -f docker-compose.ssl.yml up -d
354
+
docker compose -f docker-compose.yml -f docker-compose.ssl.yml -f docker-compose.postgres.yml up -d
351
355
```
352
356
353
357
Now from lattice -> database management, reimport your in-house databases.
0 commit comments