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

https://github.com/potatogopher/composetest


https://github.com/potatogopher/composetest

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# Docker Compose Getting Started Tutroial
This is a tutorial done for learning puposes found at [Docker](https://docs.docker.com/compose/gettingstarted/)

## Installation
```bash
# clone project
$ git clone git@github.com:potatogopher/composetest
$ cd composetest

# build and start server
$ docker build -t web .
$ docker-compose up

# navigate to localhost:5000 or 0.0.0.0:5000 to see the application running
```