Docker-compose up is running but not showing in the browser

Hi
I am trying to build the image using the command:
docker-compose build
But I’m receiving the following error
Screenshots of my .yml and docker file is also attached.
Thanks in advance

My dockerfile:
FROM python:3
ENV PYTHONUNBUFFERED=1
RUN mkdir /code
WORKDIR /code
COPY requirements.txt /code/
COPY . /code/
RUN pip install -r requirements.txt

My docker-compose.yml:
version: ‘3’

services:
web:
build: .
command: python manage.py runserver 0.0.0.0:8888
ports:
- “8888:8888”