Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

calitb/Sample-Python-Server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PythonServer

Build and start the servers

docker-compose up -d

Test the server

Open the following links:

API: http://localhost/query

DB: http://localhost:8080

In Adminer use server=mysql, user=calitb, pass=12345

Enter container CLI

# Server Develop
docker exec -it python_server ash
# MySQL (password 12345)
docker exec -it mysql mysql -ucalitb -p

Stop the servers

# Develop
docker-compose down