How can you define what labels will be used for an image built using Docker Compose?
Experience Level: Senior
Tags: Docker Compose
Answer
Use labels: property of your service:
version: "3.9"
services:
my-service:
build:
context: .
labels:
- com.example.description: "Our awesome service"
- com.example.department: "IT"
Related Docker Compose job interview questions
What are Docker Compose profiles good for?
Docker Compose SeniorHow can you run a one off command using Docker Compose?
Docker Compose SeniorHow can you override a command that will be executed in a container of a specific service in Docker Compose?
Docker Compose SeniorHow do you map ports to a specific service container in Docker Compose?
Docker Compose SeniorHow do you comment out lines that you don't want to be processed by Docker Compose?
Docker Compose Senior