1
0
mirror of https://github.com/umputun/reproxy.git synced 2024-11-24 08:12:31 +02:00

Fix typo in assets example

This commit is contained in:
23ua 2021-04-21 20:47:43 +12:00 committed by Umputun
parent 6096db3ff0
commit 7e89e35e48

View File

@ -3,5 +3,5 @@
The example demonstrates how to use reproxy.io for static content serving
- [embed](embed) is a Dockerfile embedding assets into container and serving them with reproxy.
Build it with `docker build -t example .` and run with `docker -it --rm -p 80:80 example`. Hit `http://localhost/index.html` (or `http://localhost`) and `http://localhost/1.html`. Alternatively use `docker-compose build && docker-compose up`
Build it with `docker build -t example .` and run with `docker run -it --rm -p 80:80 example`. Hit `http://localhost/index.html` (or `http://localhost`) and `http://localhost/1.html`. Alternatively use `docker-compose build && docker-compose up`
- [external](external) demonstrates how to serve assets from docker's volume (host's file system). The same as above, but you can also edit files inside `assets` and see the changed responses.