Skip to content

Commit 95f690c

Browse files
committed
Tidy up AppApi example
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
1 parent 429a61c commit 95f690c

4 files changed

Lines changed: 10 additions & 3 deletions

File tree

File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ This Dockerfile:
6464
```yaml
6565
services:
6666
db:
67-
image: postgres:16-alpine
67+
image: postgres:18-alpine
6868
restart: unless-stopped
6969
volumes:
7070
- db:/var/lib/postgresql/data:Z

.examples/appapi/compose.yaml renamed to .examples/docker-compose/appapi/compose.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
services:
2+
# Note: PostgreSQL is an external service. You can find more information about the configuration here:
3+
# https://hub.docker.com/_/postgres
24
db:
3-
image: postgres:16-alpine
5+
image: postgres:18-alpine
6+
# Note: Check the recommend version here: https://docs.nextcloud.com/server/latest/admin_manual/installation/system_requirements.html#server
47
restart: unless-stopped
58
volumes:
69
- db:/var/lib/postgresql/data:Z
@@ -28,10 +31,14 @@ services:
2831
- db
2932
- redis
3033

34+
# Note: Redis is an external service. You can find more information about the configuration here:
35+
# https://hub.docker.com/_/redis
3136
redis:
3237
image: redis:alpine
3338
restart: unless-stopped
34-
39+
40+
# Note: Nginx is an external service. You can find more information about the configuration here:
41+
# https://hub.docker.com/_/nginx/
3542
web:
3643
image: nginx:alpine
3744
restart: unless-stopped

0 commit comments

Comments
 (0)