mirror of
https://github.com/chevereto/docker.git
synced 2026-05-07 03:17:07 +02:00
998 B
998 B
Build
Make image
This command creates the Docker image for Chevereto by downloading the software at ./chevereto and then build from Dockerfile.
make image <options>
Options
- VERSION=4.0
- EDITION=pro
- TARGET=default (controls image base name)
Example:
make image VERSION=4.0
Notes on TARGET
Images will have a tag named following this convention:
| Target | Naming | Example |
|---|---|---|
| default | chevereto:VERSION | chevereto:4.0 |
| dev | chevereto-dev:VERSION | chevereto-dev:4.0 |
| any | chevereto-any:VERSION | chevereto-any:4.0 |
Make custom images
This command creates the Docker image for Chevereto copying the contents from ./chevereto and then build from Dockerfile.
make image-custom <options>
Available options:
- VERSION=4.0
- TARGET=default
Example:
make image-custom VERSION=4.0