Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docker images using incorrect Nextcloud version? #1879

Closed
jcastro opened this issue Dec 9, 2022 · 2 comments
Closed

Docker images using incorrect Nextcloud version? #1879

jcastro opened this issue Dec 9, 2022 · 2 comments

Comments

@jcastro
Copy link

jcastro commented Dec 9, 2022

I've been using the docker image nextcloud:production-apache which is supposed to have more stable version 24, however this morning I updated the image and now I'm on nextcloud 25!!!

Here's my docker compose

version: '3'

services:
  db:
    image: postgres:14
    restart: always
    volumes:
      - /root/docker/nextcloud/db:/var/lib/postgresql/data
    env_file:
      - stack.env

  redis:
    image: redis:alpine
    restart: always

  app:
    image: nextcloud:production-apache
    restart: always
    ports:
      - 8080:80
    volumes:
      - /root/docker/nextcloud/nextcloud:/var/www/html
      - /mnt/DataSSD/nextcloud_data:/var/www/html/data
    environment:
      - POSTGRES_HOST=db
      - REDIS_HOST=redis
      - PHP_MEMORY_LIMIT=2048M #Default 512M
      - PHP_UPLOAD_LIMIT=1024M #Default 512M
    env_file:
      - stack.env
    depends_on:
      - db
      - redis

  cron:
    image: nextcloud:apache
    restart: always
    volumes:
      - /root/docker/nextcloud/nextcloud:/var/www/html
      - /mnt/DataSSD/nextcloud_data:/var/www/html/data
    entrypoint: /cron.sh
    depends_on:
      - db
      - redis
@meonkeys
Copy link
Contributor

meonkeys commented Dec 9, 2022

25 has the stable tag now. See #1865

@jcastro
Copy link
Author

jcastro commented Dec 9, 2022

25 has the stable tag now. See #1865

thanks!

@jcastro jcastro closed this as completed Dec 9, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants