Composerize Docker Container

Creates a Container which runs magicmark’s Composerize, with httpd:2.4.46-alpine image as the base image, as seen on https://www.composerize.com/

Deploy with docker-compose:

  composerize:
    container_name: composerize
    image: griefed/composerize
    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 the same directory as your docker-compose.yml, edit your docker-compose.yml:

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

Then build with:

docker-compose up -d --build composerize
Composerize