blob: 19a0707200154fcc9cca8e4514e6743ad11cc535 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Restring Dockerfile
This directory contains a `Dockerfile` for the [Restring](https://github.com/likang/restring) web app.
Clone the repo, put this file in there and do:
```bash
$ docker build -t restring .
$ docker run -d -p 3001:80 --name restring-web restring
```
Use any free port instead of `3001`.
|