From 0459a9671fdc0912c97361d4e37c33794d53b453 Mon Sep 17 00:00:00 2001 From: Griefed <44273438+Griefed@users.noreply.github.com> Date: Tue, 18 Aug 2020 20:08:29 +0200 Subject: [PATCH] Update README.md --- README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c06aaac..56eb811 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,19 @@ https://github.com/icecoder/ICEcoder in a container! ports: - 8080:8080 ``` - +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 and build the container with: +``` + icecoder: + container_name: icecoder + build: ./ + restart: unless-stopped + ports: + - 8080:8080 +``` +``` +docker-compose up -d --build icecoder +```  Creates a Container which runs [icecoder's](https://github.com/icecoder) [ICEcoder](https://github.com/icecoder/ICEcoder) with, [php:alpine](https://hub.docker.com/_/php) as the base image, as seen on https://icecoder.net/ -- GitLab