Get startedGet started for free

How many resources?

How many resources are defined in the following Docker Compose file?

services:
  redis:
    image: redislabs/redismod
    ports:
      - '6379:6379'
  flask:
    image: flaskapp
    ports:
      - '8000:8000'
    depends_on:
      - redis
  nginx:
    image: nginx
    ports:
      - '80:80'

This exercise is part of the course

Intermediate Docker

View Course

Hands-on interactive exercise

Turn theory into action with one of our interactive exercises

Start Exercise