Skip to content
Snippets Groups Projects
user avatar
Griefed authored
293731b6
History
Name Last commit Last update
root
Dockerfile
LICENSE
README.md

ICEcoder-Container

https://github.com/icecoder/ICEcoder in a container!

Docker Pulls Docker Image Size (latest by date) Docker Cloud Build Status Docker Cloud Automated build GitHub Repo stars GitHub forks

Creates a Container which runs icecoder's ICEcoder with, php:alpine as the base image, as seen on https://icecoder.net/

Deploy with docker-compose:

  icecoder:
    container_name: icecoder
    image: griefed/icecoder
    restart: unless-stopped
    ports:
      - 8080:8080

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 ICEcoder in the same directory as your docker-compose.yml, edit your docker-compose.yml:

  icecoder:
    container_name: icecoder
    build: ./ICEcoder/
    restart: unless-stopped
    ports:
      - 8080:8080

Then build with:

docker-compose up -d --build icecoder

ICEcoder