H
Homarr5w ago
Pi0rre

Update with docker-compose pull performed but remains blocked in 1.7.0 although it is well pull

Hello, I have a problem with my Homarr, it is well updated with docker-compose pull but remains blocked in 1.7.0 whereas it is well pull. Could you help me because I don't know what to do. I remembered to stop and start it.
No description
No description
Solution:
- Your docker pulled the correct image and "downloaded" 1.9.0 - Your container is likely still running (or was running) with the old image - You are using docker-compose, which is the old version and deprecated. Use docker compose instead. See https://homarr.dev/docs/getting-started/installation/docker#updating for further information....
Docker | Homarr documentation
Docker is our recommended installation method for beginners and professionals.
Jump to solution
13 Replies
Cakey Bot
Cakey Bot5w ago
Thank you for submitting a support request. Depending on the volume of requests, our team should get in contact with you shortly.
⚠️ Please include the following details in your post or we may reject your request without further comment: - Log (See https://homarr.dev/docs/community/faq#how-do-i-open-the-console--log) - Operating system (Unraid, TrueNAS, Ubuntu, ...) - Exact Homarr version (eg. 0.15.0, not latest) - Configuration (eg. docker-compose, screenshot or similar. Use ``your-text`` to format) - Other relevant information (eg. your devices, your browser, ...)
Frequently Asked Questions | Homarr documentation
Can I install Homarr on a Raspberry Pi?
Manicraft1001
Manicraft10015w ago
!qa required_data
Cakey Bot
Cakey Bot5w ago
Thank you for your question. Our support team has noted that your request does not meet the minimum required data so we are unable to answer your question. Please provide: - your Homarr logs - your setup configuration (eg. docker compose, docker run, helm chart, screenshot, ...) - A detailed description of your problem or question with additional images where necessary - Your operating system - Version of Homarr (do not say latest! say 0.15.2, ...) Failure to comply with this will result in a permanent closure of your support request.
Manicraft1001
Manicraft10015w ago
Please provide at least the docker run / docker compose and the image tag you use.
Pi0rre
Pi0rreOP5w ago
version: '3'
#---------------------------------------------------------------------#
# Homarr - A simple, yet powerful dashboard for your server. #
#---------------------------------------------------------------------#
services:
homarr:
container_name: homarr
image: ghcr.io/homarr-labs/homarr:latest
restart: unless-stopped
cap_add:
- SYS_ADMIN
security_opt:
- seccomp:unconfined
volumes:
- /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration
- ./appdata:/appdata
ports:
- '7575:7575'
environment:
#NODE_TLS_REJECT_UNAUTHORIZED: 0
AUTH_PROVIDERS: "credentials,oidc"
AUTH_OIDC_CLIENT_ID: "XXXX"
AUTH_OIDC_CLIENT_SECRET: "XXXX"
AUTH_OIDC_NAME_ATTRIBUTE_OVERWRITE: "username"
AUTH_OIDC_CLIENT_NAME: "PIBGD"
AUTH_OIDC_SCOPE_OVERWRITE: "openid"
AUTH_OIDC_PROFILE_ATTRIBUTE: "username"
#AUTH_OIDC_GROUPS_ATTRIBUTE: "groups"
AUTH_OIDC_AUTO_LOGIN: "false"
AUTH_OIDC_ISSUER: "https://sso.pibgd.net/webman/sso"
BASE_URL: "portail.pibgd.net"
TZ: "Europe/Paris"
NEXTAUTH_URL: "https://portail.pibgd.net"
DEFAULT_COLOR_SCHEME: "dark"
DISABLE_ANALYTICS: "true"
SECRET_ENCRYPTION_KEY: "XXXX
networks:
default:
name: proxy
external: true
version: '3'
#---------------------------------------------------------------------#
# Homarr - A simple, yet powerful dashboard for your server. #
#---------------------------------------------------------------------#
services:
homarr:
container_name: homarr
image: ghcr.io/homarr-labs/homarr:latest
restart: unless-stopped
cap_add:
- SYS_ADMIN
security_opt:
- seccomp:unconfined
volumes:
- /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration
- ./appdata:/appdata
ports:
- '7575:7575'
environment:
#NODE_TLS_REJECT_UNAUTHORIZED: 0
AUTH_PROVIDERS: "credentials,oidc"
AUTH_OIDC_CLIENT_ID: "XXXX"
AUTH_OIDC_CLIENT_SECRET: "XXXX"
AUTH_OIDC_NAME_ATTRIBUTE_OVERWRITE: "username"
AUTH_OIDC_CLIENT_NAME: "PIBGD"
AUTH_OIDC_SCOPE_OVERWRITE: "openid"
AUTH_OIDC_PROFILE_ATTRIBUTE: "username"
#AUTH_OIDC_GROUPS_ATTRIBUTE: "groups"
AUTH_OIDC_AUTO_LOGIN: "false"
AUTH_OIDC_ISSUER: "https://sso.pibgd.net/webman/sso"
BASE_URL: "portail.pibgd.net"
TZ: "Europe/Paris"
NEXTAUTH_URL: "https://portail.pibgd.net"
DEFAULT_COLOR_SCHEME: "dark"
DISABLE_ANALYTICS: "true"
SECRET_ENCRYPTION_KEY: "XXXX
networks:
default:
name: proxy
external: true
Here's my configuration: the VM hosting docker is up to date. My Homarr version is 1.7.0, But it's a good pull on my side, so it should normally be in 1.9.0.
Manicraft1001
Manicraft10015w ago
Run docker image inspect ghcr.io/homarr-labs/homarr:latest and paste the output here.
Pi0rre
Pi0rreOP5w ago
Here's what you asked me and a little trick I've just seen because I used to do a start and not an up -d and he doesn't like it.
Solution
Manicraft1001
Manicraft10015w ago
- Your docker pulled the correct image and "downloaded" 1.9.0 - Your container is likely still running (or was running) with the old image - You are using docker-compose, which is the old version and deprecated. Use docker compose instead. See https://homarr.dev/docs/getting-started/installation/docker#updating for further information.
Docker | Homarr documentation
Docker is our recommended installation method for beginners and professionals.
Pi0rre
Pi0rreOP5w ago
Oh thank you very much, it works again, so now I have to use docker compose and not docker-compose? Do I also need to uninstall docker-compose?
Manicraft1001
Manicraft10015w ago
Stack Overflow
Difference between "docker compose" and "docker-compose"
Note: this question was created BEFORE docker docs were updated (it was the reason they were updated - see this answer). Please do not post answers pointing out the docs on the differences :-) I h...
Manicraft1001
Manicraft10015w ago
Can I mark this as resolved?
Pi0rre
Pi0rreOP5w ago
Of course, thank you for your responsiveness and your help.
Manicraft1001
Manicraft10015w ago
You're welcome. Glad we got it to work. Let us know if you need any other assistance and have fun with :homarr: .

Did you find this page helpful?