Back to Course

Research Questions Docker Compose (Add On)

0% Complete
0/0 Steps
Quiz 1 of 0

Research Questions Docker Compose (Add On)

Refer to this code and answer the following questions:

version: "3.8"
services:
  web:
    build: .
    depends_on:
      - db
      - redis
    volumes:
      - .:/code
      - logvolume01:/var/log
    ports:
      - "8080:80"
  redis:
    image: redis
  db:
    image: postgres
volumes:
  logvolume01: {}