Archives - page 31

Environment variables in Compose

Docker for DevOps engineer 5 minute read

Hai semuanya di materi kali ini kita akan membahas Environment variable khususnya dalam Compose file, diantaranya

  1. Set environtment variable in container
  2. The .env file
  3. Operation System environment variables
  4. Using the --env-file option
  5. Pass environment variables to containers
  6. The env_file configuration option
  7. Set environment variables with docker-compose run

Ok langsung ja, kita ke pembahasan yang pertama yaitu

Compose file specification and syntax

Docker for DevOps engineer 4 minute read

Hai semuanya di materi kali ini kita akan membahas basic syntax dalam penulisan Compose file, diantaranya yang akan kita bahas yaitu

  1. Compose file version
  2. Service configuration reference
  3. Volume configuration reference
  4. Network configuration reference

Ok langsung ja kita kepembahasan yang pertama yaitu

Overview of docker-compose CLI

Docker for DevOps engineer 4 minute read

Hai semuanya di materi kali ini kita akan membahas tentang docker-compose CLI (Commandline Interface) diantaranya seperti berikut:

  1. Command options overview and help
  2. Specify name and path of one or more Compose files
    1. Specifying a path to a single Compose file
    2. Specifying multiple Compose files
  3. Specify a project name

Ok langsung aja kita ke pembahas yang pertama yaitu

Overview of Docker Compose

Docker for DevOps engineer 3 minute read

Hai semuanya di materi kali ini kita akan membahas tentang Docker Compose, diantaranya:

  1. Overview
  2. Features
  3. Common use cases

Overview

Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a YAML file to configure your application’s services. Then, with a single command, you create and start all the services from your configuration. Compose works in all environments: production, staging, development, testing, as well as CI workflows.

Back to top ↑