Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

261
Vistas
Dockerized Django On Ubuntu

I am using:

  1. Ubuntu 16.04.
  2. Docker version 1.12.6.

I want to containerize my existing Django app., knowing that everything goes well in this app. => no bugs, no errors...

My Dockerfile:

FROM django

ADD . /BackendServer

WORKDIR /BackendServer

RUN pip install -r requirements.txt

CMD [ "python", "BackendServer/manage.py runserver 0.0.0.0:8000" ]

requirements.txt

djangorestframework
gunicorn

Now everything goes well, except the last line when executing the manage.py python, it says: "python: can't open file 'BackendServer/manage.py runserver 0.0.0.0:8000': [Errno 2] No such file or directory".

So, I execute the following command: "sudo docker run backendserver ./BackendServer/manage.py runserver 0.0.0.0:8000"

I got no errors and still the server is not running!! errors screen

What shall I do so that I can access the django server !? Please help!!

Additional note: here is the execution of "ls BackendServer" in the container.

thanks in advance!

about 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

You have already changed the directory into /BackendServer.

Use this instead:

CMD [ "python", "./manage.py runserver 0.0.0.0:8000" ]

Also note that docker run executes without a tty by default, which will suppress the output. Run with -it to use interactive terminal.

about 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda