dcc Docker Container

I’ve made a docker container for another docker run to docker-compose converter I found on GitHub. Copy Pasta of my README from https://github.com/Griefed/dcc-Container:

Creates a Container which runs bucherfa dcc-web, with httpd:alpine as the base image, as seen on https://bucherfa.github.io/dcc-web/.

Deploy with docker-compose:

  dcc:
    container_name: dcc
    image: griefed/dcc
    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:

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

Then build with:

docker-compose up -d --build dcc
dcc