https://github.com/dockersamples/linux_tweet_app
A very simple webapp based on NGINX
https://github.com/dockersamples/linux_tweet_app
Last synced: 4 months ago
JSON representation
A very simple webapp based on NGINX
- Host: GitHub
- URL: https://github.com/dockersamples/linux_tweet_app
- Owner: dockersamples
- License: apache-2.0
- Created: 2017-10-09T19:02:25.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-11-27T18:29:10.000Z (7 months ago)
- Last Synced: 2025-02-25T13:53:13.309Z (4 months ago)
- Language: HTML
- Size: 16.6 KB
- Stars: 48
- Watchers: 8
- Forks: 252
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Linux Tweet App
This is a very simple NGINX website that allows a user to send a tweet.
It's mostly used as a sample application for Docker 101 workshops.
## Getting Started
## Pre-requisite
- Install Docker
## Build the Docker Image
```
docker build -t linux_tweet_app .
```## Running the container
```
docker container run --detach -p 80:80 linux_tweet_app
```## Accessing the app
Open the browser and access `https://localhost:80`