https://github.com/potatogopher/composetest
https://github.com/potatogopher/composetest
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/potatogopher/composetest
- Owner: potatogopher
- Created: 2016-12-01T15:51:37.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-01T15:52:07.000Z (over 9 years ago)
- Last Synced: 2025-03-21T22:13:21.600Z (over 1 year ago)
- Language: Python
- Size: 1000 Bytes
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```