Expose container in LAN network

Hi,
i Have execute a django app into a docker container through the following files:
(Dockerfile)
FROM python:3.5
ENV PYTHONUNBUFFERED 1
RUN mkdir /code
WORKDIR /code
COPY requirements.txt .
RUN pip install -r requirements.txt

(docker-compose.yml)

version : ‘3.5’
services:
web:
build: .
command: bash -c “python manage.py runserver 0.0.0.0:8000”
container_name: test_container
volumes:
- .:/code
ports:
- 8000:8000

Now I need that this container with my django application inside can also be used by other computers connected to the same LAN network. With this configuration, I can only access my application from my computer, ie the one on which my docker container is active.

could you help me ?? Thanks a lot!!