Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleSearch for SNAPSHOT dependencies
grep -rnw './' -e 'SNAPSHOT'

# Check the output
Info
titleCurrent Release 0.66.0

The current release version 0.66.0 will return a few files containing "SNAPSHOT" from the archetype.properties file. These are not used for the build and shouldn't cause any harm.


Search for unexpected binaries

...

Code Block
titleBuild Docker images and start
docker-compose up -d

# Use docker-compose up to run it in foreground
# Docker images will be locally built


Info
titleBuilding Docker images on Windows

There is a known problem when build a Docker image from source under Windows related to proper end-of-line encoding for Docker builds.

In case your are testing the system in Windows, quickly execute a ``docker-compose logs nginx`` and check the output. If there is an error, you need to fix the line encoding of docker-entrypoint.sh.

Open the file ui/docker-entrypoint.sh, change the eol encoding to "LF" (e.g., in Notepad++ by clicking on "Windows CLRF" in the bottom status bar) and re-run the Docker build by executing ``docker-compose rebuild --no-cache nginx``. Start the container with executing ``docker-compose up -d nginx``. 


Once you're done with that, proceed to the next step. Before we test the whole system, we'll build and run the extensions.

...