Corteza with Docker Compose
Set up Docker
If Docker is already set up on the machine where you want to use Corteza, you can skip this section. If you are using a Docker version below 18.0, I strongly encourage you to update.
docker -v
If the response is "command not found," download and install a Docker community edition for desktop or server or cloud that fits your environment.
Configuration files
Very base Corteza service configuration for Docker Compose consists of one or two files:
obligatory docker-compose.yaml
and .env
file.
Environment file (.env)
The format for environment files is simple and clean with one KEY=VALUE
per line.
File usually has the name .env
and is placed in the same directory as an application.
In Docker Compose context it is placed in the same directory as docker-compose.yaml
configuration file.
-
Configuring Docker Compose itself. Implicit, as
.env
file in the same directory asdocker-compose.yaml
) -
Utilize values for docker-compose configuration. Implicit, as
.env
file in the same directory asdocker-compose.yaml
) -
Passed to configured services. Environment file(s) must be explicitly referenced by each service (
env_file: [ .env ]
) You can use.env
or one or more environment files. See [Delaying API execution].
# Docker images version (1)
VERSION=latest (2)
1 | Comment line |
2 | Key and value |
docker-compose.yaml file
This file describes service, network and storage configuration in a human and machine readable format.
Full Docker Compose file reference documentation is available on docs.docker.com.
YAML (a recursive acronym for "YAML Ain’t Markup Language") is a human-readable data-serialization language. It is commonly used for configuration files and in applications where data is being stored or transmitted. |
Environmental variables from .env
can be utilized to make docker-compose.yaml
file more compact, modular and simpler to change.
You can define a variable (like VERSION
) and then use it inside yaml file (as ${VERSION}`).