Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cristaloleg/ease

easy serving
https://github.com/cristaloleg/ease

docker docker-compose docker-container docker-image server

Last synced: 4 days ago
JSON representation

easy serving

Awesome Lists containing this project

README

        

# ease
easy serving

## Install

```
# From Docker Hub
docker pull olegkovalov/ease:latest

# or from Github Packages
docker pull ghcr.io/cristaloleg/ease:latest
```

## Usage

In your `Dockerfile` just use in `FROM` directive and `COPY` your assets to `assets` folder.

```
FROM olegkovalov/ease:main

COPY . assets

EXPOSE 8000

CMD ["./ease.exec"]
```

To quickly run `Dockerfile` use: `docker run -p 8000:8000 -it $(docker build -f Dockerfile -q .)`