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

Add playbook to upgrade nextcloud #2

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

Conversation

henmohr
Copy link
Contributor

@henmohr henmohr commented Nov 18, 2024

@vitormattos e @mateusrovedaa podem dar uma conferida?

Comment on lines 19 to 25
- name: Update NEXTCLOUD_VERSION in Dockerfile
ansible.builtin.lineinfile:
path: /root/projects/nextcloud-docker/.docker/app/Dockerfile
regexp: '^ARG NEXTCLOUD_VERSION=.*'
line: 'ARG NEXTCLOUD_VERSION=30-fpm'
state: present
become: true
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isto é uma environment, não é para ser alterado no Dockerfile

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A ideia seria fazer o upgrade de versão, mas, acabei mudando para 'stable-fpm' pois achei um risco. Acho que passar com o parâmetro --build-arg, quando quiser fazer upgrade de versão, é mais seguro. O que acha?

Comment on lines +27 to +31
- name: Build images
community.docker.docker_compose_v2:
project_src: /root/projects/nextcloud-docker
build: always
register: output
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Acho que não precisa ser build always mas o que precisa é fazer o pull da imagem. O build só é feito quando o hash da imagem é diferente do hash do último build.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Acho que se está rodando essa playbook é para buildar mesmo. O que consigo pensar é verificar a versão atual que está em execução e a versão que foi lançada (se foi). A partir disso tomar uma decisão. Pode ser uma playbook a parte, bastando importar. O que acha?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

É um bom caminho pensando em poupar tempo de execução do playbook.

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

Successfully merging this pull request may close these issues.

2 participants