/hnrss-docker

Dockerfile for hnrss — Hacker News RSS

Primary LanguageShellThe UnlicenseUnlicense

HNRSS Docker Image

HNRSS in a Docker container.

Usage

Note: For HNRSS usage see the official documentation

docker-compose

Create a docker-compose.yml file with the following content:

version: '3'
services:
  hnrss:
    image: cascadingstyletrees/hnrss-docker:latest
    container_name: hnrss
    ports:
      - 9000:9000
    restart: unless-stopped

To start the container:

docker-compose up -d

docker cli

docker run -d \
  --name=hnrss \
  -p 9000:9000 \
  --restart unless-stopped \
  cascadingstyletrees/hnrss-docker:latest

Building the image

git clone https://github.com/cascadingstyletrees/hnrss-docker.git
cd hnrss-docker
docker build -t cascadingstyletrees/hnrss-docker:latest .

Updating

This image builds HNRSS when the container starts, to update restart or recreate the container.

Ports

  • 9000 Default port for HNRSS web interface using the GIN Framework

Additional Information

Credits

This project is not endorsed or affiliated with HNRSS