You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would love an example on how to run this and the websocket in a docker container, seems Ubuntu doesn't like the install process.
I also have't been able to get the socket command to work
Dockerfile
# Use an official Python runtime as a parent image
FROM python:3.10-slim
# Set the working directory in the container
WORKDIR /app
# Install Poetry using pip
RUN pip install --no-cache-dir poetry
# Install websocat via apt-get
RUN apt-get update && apt-get install -y websocat \
&& apt-get clean
# Copy pyproject.toml and poetry.lock to install dependencies
COPY pyproject.toml poetry.lock ./
# Install Python dependencies using Poetry
RUN poetry config virtualenvs.create false \
&& poetry install --no-interaction --no-ansi
# Copy the rest of the application code
COPY . .
# Run the hive-watcher using poetry
CMD ["poetry", "run", "python3", "-u", "./hive-watcher.py", "--socket", "172.18.0.3:8080", "--json"]
The text was updated successfully, but these errors were encountered:
It's ok, I made a work around I just Curl the output response to our server.
PodID has stored over 5000 RSS urls via podping, which we will start spidering
I haven't touched this in ages, and I don't think the socket is even supported anymore. I can try to get it to work but the new rust version I'm nearly done with will probably be a better bet.
Would love an example on how to run this and the websocket in a docker container, seems Ubuntu doesn't like the install process.
I also have't been able to get the socket command to work
Dockerfile
The text was updated successfully, but these errors were encountered: