Skip to content

Instantly share code, notes, and snippets.

@Joaopcamposs
Created May 19, 2022 17:46
Show Gist options
  • Save Joaopcamposs/95328d77e7c11f19efcde51646f667c9 to your computer and use it in GitHub Desktop.
Save Joaopcamposs/95328d77e7c11f19efcde51646f667c9 to your computer and use it in GitHub Desktop.
version: '3.9'
services:
db:
container_name: mysql_database
image: mysql:latest
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: password
api:
container_name: python_api
build: .
ports:
- "8000:8000"
depends_on:
- db
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment