Yes, since this is a minor version nothing else should change and just updating "mayan-edms==2.7" in the Dockerfile should be enough. Example: https://gitlab.com/mayan-edms/mayan-edms-docker/commit/35fb4f3da305753f98915f37d76bbcd814410f3c
You can run the full test suit by installing mock (needed by the tests) with: pip install mock==2.0.0 and then with: mayan-edms.py test --mayan-apps This will validate if the updated version is working correctly in your setup. The Python 3 support is still preliminary and not enabled in the Docker image. It is the start of the support for Python 3 for when Mayan moved to Django 2.0 which only supports Python 3. Mayan will continue to use Python 2.7.x as the default for several months or even a year. On Tuesday, September 5, 2017 at 7:58:08 PM UTC-4, Lin Pro wrote: > > >> > On Wednesday, August 30, 2017 at 3:38:37 PM UTC-5, Roberto Rosario wrote: >> >> Version 2.7 is available for download from Python Package Index ( >> https://pypi.python.org/pypi/mayan-edms/2.7). Docker image available >> soon. >> >> > Thnak you for the new version. > I did the following to check it in docker: > > In Dockerfile: > # Install Mayan EDMS, latest production release > RUN pip install mayan-edms==2.7 > > In docker-compose2_7.yml: > mayan-edms: > restart: always > container_name: mayan-edms-app > image: linforpros/mayanedms:2.7 > > Following that: > docker container rm mayanedms/mayan-edms-app > docker build -t linforpros/mayanedms:2.7 > docker push linforpros/mayanedms:2.7 > docker-compose -f docker-compose2_7.yml up -d > > > It seems to be up and running. > docker container ps > CONTAINER ID IMAGE COMMAND > CREATED STATUS PORTS > a5b51342ccc0 linforpros/mayanedms:2.7 "entrypoint.sh mayan" 16 > minutes ago Up 16 minutes (healthy) 0.0.0.0:80->80/tcp > a8019f91ac72 healthcheck/rabbitmq "docker-entrypoint..." 17 > minutes ago Up 16 minutes (healthy) 4369/tcp, 5671-5672/tc > 17f22498fa1f healthcheck/redis "docker-entrypoint..." 17 > minutes ago Up 16 minutes (healthy) 6379/tcp > 10384ced7876 healthcheck/postgres "docker-entrypoint..." 17 > minutes ago Up 16 minutes (healthy) 5432/tcp > > The question is however if that was the right way to do it. > Could anyone steer me to soe tools how to double check if this version is > not missing some functionality, like python3 capabilities which were > mentioned in the new version 2.7 > > Thank > Lin > > -- --- You received this message because you are subscribed to the Google Groups "Mayan EDMS" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
