Skip to content

rafilkmp3/docker-httrack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Run httrack once standalone
docker run -it --rm -e MIRROR_SITE="https://example.com" -v ./sitecloned:/tmp/site rafilkmp3/docker-httrack:latest 
Run httrack and serve webpage using nginx

Using docker-compose.yaml

version: '3'

services:
  nginx:
    image: jtreminio/php-apache:7.2
    ports:
      - 8080:80
    volumes:
      - static-content:/var/www/
    environment:
      VHOST : "wordpress"
  httrack:
    image: rafilkmp3/docker-httrack:latest
    environment:
      MIRROR_SITE : https://example.com
    volumes:
      - static-content:/tmp/site/

volumes:
  static-content:

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published