Skip to content
Snippets Groups Projects
README.md 905 B
Newer Older
Griefed's avatar
Griefed committed
# SUI-Container
https://github.com/jeroenpardon/sui in a container!
Griefed's avatar
Griefed committed

Griefed's avatar
Griefed committed
Creates a Container which runs [jeroenpardon](https://github.com/jeroenpardon) [SUI](https://github.com/jeroenpardon/sui), with [httpd:alpine](https://hub.docker.com/_/httpd) as the base image, as seen on https://imgur.com/a/FDVRIyw

Griefed's avatar
Griefed committed
# Deploy with docker-compose:
```
  sui:
    container_name: sui
    image: griefed/sui
    restart: unless-stopped
    ports:
      - 80:80
```
Griefed's avatar
Griefed committed
### Deploy on Rasbperry Pi
Griefed's avatar
Griefed committed
Using the Dockerfile, this container can be built and run on a Raspberry Pi, too! I've tested it on a Raspberry Pi 3B+.
Griefed's avatar
Griefed committed
Simply put the Dockerfile in the same directory as your docker-compose.yml, edit your docker-compose.yml:
Griefed's avatar
Griefed committed
```
  sui:
    container_name: sui
    build: ./
    restart: unless-stopped
    ports:
      - 80:80
```
Griefed's avatar
Griefed committed
Then build with:
Griefed's avatar
Griefed committed
```
docker-compose up -d --build sui
```
![SUI](https://i.imgur.com/sTzMdMH.png)