/single-file-web

A containerized version of singlefile with HTTP API

Primary LanguageJavaScript

Single file web

A dockerized implementation with web interface for single file service.

This project is an alternative implementation of SingleFile-dockerized.

Usage

Docker

Run the container:

docker run -d -p 3000:3000 --name single-file-web rutkai/single-file-web

Use the HTTP API:

curl -d 'url=http://www.example.com/' localhost:3000

Sample docker-compose file:

version: '3'
services:
  single-file-web:
    image: rutkai/single-file-web:latest
    container_name: single-file-web
    ports:
      - "3000:3000"