Files
Docker-Chevereto/docs/BUILDING.md
Rodolfo Berrios aa3b3c0dfd doc update
2022-10-16 11:24:28 -03:00

671 B

Build

Make production images

This command creates the Docker images for Apache HTTP and PHP-FPM. It provides Chevereto by downloading the software at ./chevereto.

make image <options>

Available options:

  • NAMESPACE=local
  • VERSION=4.0

Example:

make image VERSION=4.0 NAMESPACE=donchecho

Make custom images

Same as production, but it sources the software from ./chevereto rather than downloading it.

make image-custom <options>

Available options:

  • NAMESPACE=local
  • VERSION=4.0
  • TAG_BASENAME=${NAMESPACE}_chevereto:${VERSION}

Example:

make image-custom VERSION=4.0 NAMESPACE=donchecho TAG_BASENAME=mywea