Triangulator Docker Container

https://github.com/maeglin89273/triangulator in a container!

Creates a Container which runs maeglin89273’s triangulator’s, a fork of javierbyte triangulator, with httpd:alpine as the base image. The original can be seen on https://javier.xyz/triangulator/

Deploy with docker-compose:

  triangulator
    container_name: triangulator
    image: griefed/triangulator
    restart: unless-stopped
    ports:
      - 80:80

Deploy on Rasbperry Pi

Using the Dockerfile, this container can be built and run on a Raspberry Pi, too! I’ve tested it on a Raspberry Pi 3B+.
Simply put the Dockerfile in a directory called `triangulatorme directory as your docker-compose.yml, edit your docker-compose.yml:

  triangulator:
    container_name: triangulator
    build: ./triangulator/
    restart: unless-stopped
    ports:
      - 80:80

Then build with:

docker-compose up -d --build triangulator

Triangulator