Skip to content

nanic/python-rest-api-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

python-rest-api-docker

steps to run the sample rest service on docker -

  1. Clone the Repository - git clone https://github.com/nanic/python-rest-api-docker.git

  2. Move to the directory - cd python-rest-api-docker

  3. Build the docker image - docker build -t python-rest .

  4. Create and run a container - docker run -d -p 5000:5000 python-rest

  5. Navigate to http://0.0.0.0:5000/ to get hello world'd

Note: If the image is built inside a private network, you can mention gateway to proxy through Ex: docker build --build-arg proxy=hostname:port -t python-rest .

A Sample Client --

import requests r = requests.post('http://0.0.0.0:5000/v1/api',verify=False, json={"name": "naren"}) headers = {'Content-type': 'application/json'} print(r.status_code) if r.ok: print r.content

About

python

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy