DiouxX / docker-glpi

Project to deploy GLPI with docker
222 stars 185 forks source link

V10 for test #46

Closed Sailman83 closed 2 years ago

Sailman83 commented 2 years ago

Hello,

Will work to update to v10 ?

Because, I would like make some tests with beta version before update to production

Thanks

DiouxX commented 2 years ago

Hello,

Sorry but you are talking about version 10 of which component? Debian or another one?

Sailman83 commented 2 years ago

Hello,

Anyone Linux distribution.

Juste an installation V10 on Docker to do some test.

Thanks


From: DiouxX @.> Sent: Friday, December 24, 2021 3:49:15 PM To: DiouxX/docker-glpi @.> Cc: Thomas @.>; Author @.> Subject: Re: [DiouxX/docker-glpi] V10 for test (Issue #46)

Hello,

Sorry but you are talking about version 10 of which component? Debian or another one?

— Reply to this email directly, view it on GitHubhttps://github.com/DiouxX/docker-glpi/issues/46#issuecomment-1000864983, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ACML2YY266WLGJFPRY72KQLUSSB6XANCNFSM5KRB6AAQ. Triage notifications on the go with GitHub Mobile for iOShttps://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Androidhttps://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub. You are receiving this because you authored the thread.Message ID: @.***>

DiouxX commented 2 years ago

Sorry but I still don't understand which version you are talking about I suppose it is compatible in many situations.

I can only advise you to do the test and we will see the result.

Sailman83 commented 2 years ago

I talk about New version 10 in bête status.

We can download in standard package. I would like test in docker container.


From: DiouxX @.> Sent: Sunday, December 26, 2021 11:08:47 AM To: DiouxX/docker-glpi @.> Cc: Thomas @.>; Author @.> Subject: Re: [DiouxX/docker-glpi] V10 for test (Issue #46)

Sorry but I still don't understand which version you are talking about I suppose it is compatible in many situations.

I can only advise you to do the test and we will see the result.

— Reply to this email directly, view it on GitHubhttps://github.com/DiouxX/docker-glpi/issues/46#issuecomment-1001144659, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ACML2Y2QITIFLVZNHD347MTUS3SS7ANCNFSM5KRB6AAQ. Triage notifications on the go with GitHub Mobile for iOShttps://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Androidhttps://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub. You are receiving this because you authored the thread.Message ID: @.***>

DiouxX commented 2 years ago

Can't you specify that you are talking about the version of Glpi?

If you want to test, it is enough to specify the version during the deployment. It is specified in the Readme

Personally, I haven't tested it yet

Sailman83 commented 2 years ago

I use Docker-compose. I don’t know how specify the versi with this 😥

DiouxX commented 2 years ago

You can use the environnement key in your docker-compose file

Your docker-compose file might look like this :

version: "3.8"

services:
#MariaDB Container
  mariadb:
    image: mariadb:10.7
    container_name: mariadb
    hostname: mariadb
    environment:
      - MARIADB_ROOT_PASSWORD=password
      - MARIADB_DATABASE=glpidb
      - MARIADB_USER=glpi_user
      - MARIADB_PASSWORD=glpi

#GLPI Container
  glpi:
    image: diouxx/glpi
    container_name : glpi
    hostname: glpi
    environment:
      - VERSION_GLPI=10.0.0-beta
    ports:
      - "80:80"

I have tested and it's the 10.0.0-beta which is deployed