File tree Expand file tree Collapse file tree
.examples/docker-compose/appapi Expand file tree Collapse file tree File renamed without changes.
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ This Dockerfile:
6464``` yaml
6565services :
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
Original file line number Diff line number Diff line change 11services :
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
File renamed without changes.
You can’t perform that action at this time.
0 commit comments