skip to Main Content

Docker – Hive with Postgres errors

I have set up three containers that are networked because I would like to use Hadoop and Hive with PostgreSQL. You can access Docker set up via https://github.com/jcool12/hadoop-docker/tree/main/hivepost so you can download the folders/ files to run it. The Hadoop…

VIEW QUESTION

Unable to run tensorflow in Docker

I have created a Dockerfile as shown below: FROM tensorflow/tensorflow:latest WORKDIR /code COPY ./requirements.txt /code/requirements.txt RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt COPY ./app /code/app CMD ["fastapi", "run", "app/main.py", "--port", "80"] and requirements.txt file with following values: fastapi>=0.110.0,<0.113.0 pydantic>=2.7.0,<3.0.0 tensorflow…

VIEW QUESTION

Docker – Django Q cannot connect to mysql

I deploy my Django, Django-Q, mysql, metabase, redis on docker, but recently, I run the services and use simpleui to change admin page, but it shows the error as follow: Traceback (most recent call last): django_q | File "/usr/local/lib/python3.10/site-packages/django/db/backends/base/base.py", line…

VIEW QUESTION
Back To Top
Search