Git Product home page Git Product logo

Comments (10)

lalop avatar lalop commented on September 26, 2024

It's seems to depend on the mysql version too.
Are the migration completed ?

from dockerfiles.

hillelcoren avatar hillelcoren commented on September 26, 2024

From the other thread... adding strict equals false to the database config file may help.

from dockerfiles.

lalop avatar lalop commented on September 26, 2024

@srenon do you use the docker-compose of this repository ?

from dockerfiles.

srenon avatar srenon commented on September 26, 2024

@lalop .. this was my installing procedure

Install docker (mac os)
git clone this repo
open Docker Quickstart Terminal
docker-compose up
Then open the url and fill out the installation form

Doing a compose update in the setup process, maybe a quick way to solve the issue. Since the issue seem to be with laravel/framework (v5.0.33) and alot of new dependecy are also available.

# composer update
Loading composer repositories with package information
Updating dependencies (including require-dev)

  • Installing codeception/c3 (2.0.5)
    Downloading: 100%
  • Installing symfony/polyfill-util (v1.0.0)
    Downloading: 100%
  • Installing symfony/polyfill-php56 (v1.0.0)
    Downloading: 100%
  • Removing jeremeamia/superclosure (2.1.0)
  • Installing jeremeamia/superclosure (2.2.0)
    Downloading: 100%
  • Removing league/flysystem (1.0.15)
  • Installing league/flysystem (1.0.16)
    Downloading: 100%
  • Removing symfony/event-dispatcher (v2.7.7)
  • Installing symfony/event-dispatcher (v2.8.0)
    Downloading: 100%
  • Updating omnipay/paypal (v2.4.3 => 2.5.0)
    Checking out 67efe5a927dec13fc7520e29bc44f15fd3a728e9
  • Removing collizo4sky/omnipay-wepay (1.1)
  • Installing collizo4sky/omnipay-wepay (1.2.1)
    Downloading: 100%
  • Updating symfony/css-selector (v2.7.7 => v2.8.0)
    Checking out b600fec37c0efca08046d481d79e7eabc07108ff
  • Updating tijsverkoyen/css-to-inline-styles (1.5.4 => 1.5.5)
    Checking out 9753fc340726e327e4d48b7c0604f85475ae0bc3
  • Installing symfony/polyfill-mbstring (v1.0.0)
    Downloading: 100%
  • Removing symfony/filesystem (v2.7.7)
  • Installing symfony/filesystem (v2.8.0)
    Downloading: 100%
  • Removing laravel/framework (v5.0.33)
  • Installing laravel/framework (v5.0.34)
    Downloading: 100%
  • Updating maatwebsite/excel (v2.0.10 => v2.1.1)
    Checking out 4c89f4cb1d30090a256530e1dce0ed3765eca7fa
  • Removing symfony/class-loader (v2.7.7)
  • Installing symfony/class-loader (v2.8.0)
    Downloading: 100%
  • Removing doctrine/cache (v1.5.1)
  • Installing doctrine/cache (v1.5.4)
    Downloading: 100%
  • Updating doctrine/common (v2.5.1 => v2.5.2)
    Checking out 311001fd9865a4d0d59efff4eac6d7dcb3f5270c
  • Installing symfony/dom-crawler (v2.8.0)
    Downloading: 100%
  • Installing symfony/browser-kit (v2.8.0)
    Downloading: 100%
  • Installing symfony/yaml (v2.8.0)
    Downloading: 100%
  • Installing facebook/webdriver (1.1.0)
    Downloading: 100%
  • Installing sebastian/version (1.0.6)
    Downloading: 100%
  • Installing sebastian/global-state (1.1.1)
    Downloading: 100%
  • Installing sebastian/recursion-context (1.0.2)
    Downloading: 100%
  • Installing sebastian/exporter (1.2.1)
    Downloading: 100%
  • Installing sebastian/environment (1.3.3)
    Downloading: 100%
  • Installing sebastian/diff (1.4.1)
    Downloading: 100%
  • Installing sebastian/comparator (1.2.0)
    Downloading: 100%
  • Installing doctrine/instantiator (1.0.5)
    Downloading: 100%
  • Installing phpspec/prophecy (v1.5.0)
    Downloading: 100%
  • Installing phpunit/php-text-template (1.2.1)
    Downloading: 100%
  • Installing phpunit/phpunit-mock-objects (2.3.8)
    Downloading: 100%
  • Installing phpunit/php-timer (1.0.7)
    Downloading: 100%
  • Installing phpunit/php-token-stream (1.4.8)
    Downloading: 100%
  • Installing phpunit/php-file-iterator (1.4.1)
    Downloading: 100%
  • Installing phpunit/php-code-coverage (2.2.4)
    Downloading: 100%
  • Installing phpunit/phpunit (4.8.21)
    Downloading: 100%
  • Installing codeception/codeception (2.1.2)
    Downloading: 100%
  • Installing fzaninotto/faker (v1.5.0)
    Downloading: 100%
  • Installing phpspec/php-diff (v1.0.2)
    Downloading: 100%
  • Installing phpspec/phpspec (2.4.0)
    Downloading: 100%
  • Updating incube8/omnipay-multicards dev-master (ac71ec3 => 01d6838)
    Checking out 01d6838ae298d04717e7c351a2dc4ff32b51473c
  • Updating intervention/image dev-master (2d8de65 => e6acb16)
    Checking out e6acb1609ce89f2c1ec7864fbbda0a20a3eeca70
  • Updating meebio/omnipay-secure-trading dev-master (ad17832 => 42f97ee)
    Checking out 42f97ee5ad1d28605550d816fc1893919e19e502
  • Updating simshaun/recurr dev-master (9bfc90a => 53c1dda)
    Checking out 53c1ddacc7c91b25cc21983731bc2c8137d143f6

from dockerfiles.

lalop avatar lalop commented on September 26, 2024

I will try to make a new image in the next days

from dockerfiles.

lalop avatar lalop commented on September 26, 2024

I just come to push a new image with the new invoice version, this new one uses laravel 5.0.33 since this is defined into the composer.lock
@srenon I can't reproduce your error, can you try with this new image ?
@hillelcoren there is a good reason to keep composer.lock into the repository ?

from dockerfiles.

hillelcoren avatar hillelcoren commented on September 26, 2024

@lalop If we didn't keep the composer.lock file in the repo when users run composer install they may get slightly different versions of the libraries than the ones we've tested with.

from dockerfiles.

lalop avatar lalop commented on September 26, 2024

ok I see but if composer.lock is not up-to-date some fix on dependencies ( like laravel here ) can't be deployed with the app.
If you trust the package owner you should define the major and minor version of the package and be open to patch, and remove composer.lock
That is my point of view

from dockerfiles.

hillelcoren avatar hillelcoren commented on September 26, 2024

I think these may be two separate issues:

from dockerfiles.

hillelcoren avatar hillelcoren commented on September 26, 2024

I've updated the composer.lock file.

from dockerfiles.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.