Docker image of free exposed website which can be hosted on
any device supported by Python 3 and Node.js or Docker.
Website will be automatically available to the internet at https://free-exposed.loca.lt/ (subdomain can be changed in start.sh
) if it's
currently not occupied.
The website would also be available to hosting machine at http://localhost:5000/ (note the http protocol here).
- Docker
OR
- Python 3
- Node.js
docker build -t free-exposed-website .
docker run --rm -p 5000:5000 -it free-exposed-website
pip3 install -r requirements.txt
npm install -g localtunnel
lt --port 5000 --subdomain=free-exposed &
python3 -m flask run --host=0.0.0.0 --port=5000
Result of
docker image build -t free-exposed-website . && docker container run -it -p 5000:5000 --rm free-exposed-website
Website design:
- Flask (Python 3)
- localtunnel (Node.js)
- Docker