Member-only story
How to Develop a Full Stack Next.js, FastAPI, PostgreSQL App Using Docker
5 min readDec 12, 2021
This is a continuation of previous tutorials on how to build and deploy a full-stack Next.js, FastAPI, and PostgreSQL app.
Table of Contents
- Full Stack Next.js, FastAPI, PostgreSQL Tutorial
- How to Build a Full Stack Next.js, FastAPI, PostgreSQL Boilerplate Tutorial
- How to Deploy Next.js, FastAPI, and PostgreSQL with Shell Scripts
- How to Develop a Full Stack Next.js, FastAPI, PostgreSQL App Using Docker
- How to Build a User Authentication Flow with Next.js, FastAPI, and PostgreSQL
- How to Test an API with Pytest and Requests
The branch for this tutorial:
https://github.com/travisluong/nfp-boilerplate/tree/tutorial-3-how-to-develop-using-docker
The complete project:
https://github.com/travisluong/nfp-boilerplate
Docker
Docker is a tool that allows you to run your software in containers. A container is a process and filesystem that is isolated from the processes and filesystem of your host machine. The custom filesystem is provided by a container image. Using docker, you will be able to run your software in…