Skip to content

Commit 5536de6

Browse files
committed
chore: update compose files
1 parent 7c04096 commit 5536de6

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

examples/answer/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ services:
22

33
answer:
44
image: answerdev/answer
5-
container_name: answer
5+
container_name: answer
66
ports:
77
- 9080:80
88
expose:

examples/bookstack/docker-compose.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ services:
88
- PUID=1000
99
- PGID=1000
1010
- APP_URL=http://127.0.0.1:8099 # change this to your prod url with https
11+
# you should generate a new app key using:
12+
# docker run -it --rm --entrypoint /bin/bash lscr.io/linuxserver/bookstack:latest appkey
13+
- APP_KEY=base64:Npczl7vKB0Y3AlNboNTD5f71bYVaAuVB8ay4UhZ3My0=
1114
- DB_HOST=bookstack_db
1215
- DB_USERNAME=bookstack
1316
- DB_PASSWORD=USERPW1

examples/docmost/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
services:
22

33
docmost:
4-
image: docmost/docmost:0.5
4+
image: docmost/docmost:0.22
55
container_name: docmost
66
depends_on:
77
- db
88
- redis
99
environment:
1010
- APP_URL=http://127.0.0.1:3000
11-
- APP_SECRET=A_VERY_SECURE_STRING
11+
- APP_SECRET=SecureSecretKeySecureSecretKey12 # <-- change
1212
- DATABASE_URL=postgresql://docmost:STRONG_DB_PASSWORD@db:5432/docmost?schema=public
1313
- REDIS_URL=redis://redis:6379
1414
# --------- S3 Storage Configuration --------

0 commit comments

Comments
 (0)