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

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

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`

image