skip to content
ajcwebdev
Blog post cover art for Deploy a GraphQL Server with Docker and Fly

Deploy a GraphQL Server with Docker and Fly

Published:

Last Updated:
Docker, GraphQL, Express, Fly

Learn how to create a GraphQL server with Node.js and Express, build an image of the server with Docker, and deploy the container to Fly.

Outline

All of this project’s code can be found in the First Look monorepo on my GitHub.

Introduction

Express GraphQL is a library for building production ready GraphQL HTTP middleware. Despite the emphasis on Express in the repo name, you can create a GraphQL HTTP server with any HTTP web framework that supports connect styled middleware. This includes Connect itself, Express and Restify.

Docker is a set of tools that use OS-level virtualization to deliver software in isolated packages called containers. Containers bundle their own software, libraries and configuration files. Fly is a platform for fullstack applications and databases that need to run globally. You can run arbitrary Docker containers and host popular databases like Postgres.

Create a GraphQL Express Server

This article will demonstrate how to create a Docker container with Express GraphQL.

Create Project and Install Dependencies

Terminal window
mkdir ajcwebdev-express-graphql-docker
cd ajcwebdev-express-graphql-docker
yarn init -y
yarn add express express-graphql graphql

Create project files for the server, Docker image, and Docker Compose configuration.

Terminal window
echo > index.js
echo > Dockerfile
echo > docker-compose.yml

Before the Docker CLI sends the context to the Docker daemon, it looks for a file named .dockerignore in the root directory of the context and modifies the context to exclude files and directories that match patterns defined in the ignore file. This helps avoid sending large or sensitive files and directories to the daemon.

Terminal window
echo 'node_modules\nDockerfile\n.dockerignore\n.git\n.gitignore\nnpm-debug.log' > .dockerignore

Include a .gitignore file for node_modules.

Terminal window
echo 'node_modules\n.DS_Store' > .gitignore

Create graphqlHTTP Server

Enter the following code into index.js to import the graphqlHTTP function from express-graphql.

index.js
const express = require('express')
const { graphqlHTTP } = require('express-graphql')
const { buildSchema } = require('graphql')
const schema = buildSchema(`
type Query { hello: String }
`)
const rootValue = {
hello: () => 'Hello from Express GraphQL!'
}
const app = express()
app.use('/graphql',
graphqlHTTP({
schema,
rootValue,
graphiql: { headerEditorEnabled: true },
}),
)
const port = process.env.PORT || 8080
app.listen(port, () => {
console.log(`Express GraphQL server running on http://localhost:${port}/graphql`)
})

graphqlHTTP accepts a wide range of options, some of the most common include:

  • schema - A GraphQLSchema instance from GraphQL.js
  • rootValue - A value to pass as the rootValue to the execute() function
  • graphiql - If passed true or an options object it will present GraphiQL when the GraphQL endpoint is loaded in a browser
  • headerEditorEnabled - Optional boolean which enables the header editor when true

Run Local Server and Execute Test Query

express-graphql will accept requests with the parameters:

  • query - A string GraphQL document to be executed
  • variables - The runtime values to use for any GraphQL query variables as a JSON object
  • operationName - Specifies which operation should be executed if the provided query contains multiple named operations

Start your server with the following command:

Terminal window
node index

Your terminal will log this message:

Express GraphQL server running on http://localhost:8080/graphql

Open http://localhost:8080/graphql to see the GraphiQL explorer.

01 - graphiql-explorer-on-localhost-8080

query HELLO_QUERY { hello }

02 - express-graphql-hello-localhost-8080

Terminal window
curl 'http://localhost:8080/graphql' \
--header 'content-type: application/json' \
--data '{"query":"{ hello }"}'

Create a Container Image

We need to build a Docker image of your app to run this app inside a Docker container.

Dockerfile Commands

Docker can build images automatically by reading the instructions from a Dockerfile. A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image. Using docker build users can create an automated build that executes several command-line instructions in succession.

FROM node:14-alpine
LABEL org.opencontainers.image.source https://github.com/ajcwebdev/ajcwebdev-express-graphql-docker
WORKDIR /usr/src/app
COPY package*.json ./
RUN yarn
COPY . ./
EXPOSE 8080
CMD [ "node", "index" ]

Build the Image

The docker build command builds an image from a Dockerfile and a “context”. A build’s context is the set of files located in the specified PATH or URL. The URL parameter can refer to three kinds of resources:

  • Git repositories
  • Pre-packaged tarball contexts
  • Plain text files
Terminal window
docker build . -t ajcwebdev/ajcwebdev-express-graphql-docker

The -t flag lets you tag your image so it’s easier to find later using the docker images command.

List Docker Images

Your image will now be listed by Docker. The docker images command will list all top level images, their repository and tags, and their size.

Terminal window
docker images
REPOSITORY - ajcwebdev/ajcwebdev-express-graphql-docker
TAG - latest
IMAGE ID - d833d418e179
CREATED - About a minute ago
SIZE - 122MB

Run the Docker Container and Execute a Test Query

Docker runs processes in isolated containers. A container is a process which runs on a host. The host may be local or remote. When an operator executes docker run, the container process that runs is isolated in that it has its own file system, its own networking, and its own isolated process tree separate from the host.

Terminal window
docker run -p 49160:8080 -d ajcwebdev/ajcwebdev-express-graphql-docker

-d runs the container in detached mode, leaving the container running in the background. The -p flag redirects a public port to a private port inside the container.

List Containers

To test your app, get the port of your app that Docker mapped:

Terminal window
docker ps
CONTAINER ID - 4bdd108175ab
IMAGE - ajcwebdev/ajcwebdev-express-graphql-docker
COMMAND - "docker-entrypoint.s…"
CREATED - 16 seconds ago
STATUS - Up 14 seconds
PORTS - 0.0.0.0:49160->8080/tcp, :::49160->8080/tcp
NAMES - silly_greider

Print the output of your app with docker logs.

Terminal window
docker logs <container id>
Express GraphQL server running on http://localhost:8080/graphql

Docker mapped the 8080 port inside of the container to the port 49160 on your machine. Open localhost:49160/graphql and send a hello query.

query HELLO_QUERY { hello }

03 - localhost-49160-graphql

Terminal window
curl 'http://localhost:49160/graphql' \
--header 'content-type: application/json' \
--data '{"query":"{ hello }"}'

Create a Docker Compose File

Compose is a tool for defining and running multi-container Docker applications. After configuring your application’s services with a YAML file, you can create and start all your services with a single command. Define the services that make up your app in docker-compose.yml so they can be run together in an isolated environment.

version: "3.9"
services:
web:
build: .
ports:
- "49160:8080"

Stop your currently running container before running the next command or the port will be in use.

Terminal window
docker stop <container id>

The docker compose up command aggregates the output of each container. It builds, (re)creates, starts, and attaches to containers for a service.

Terminal window
docker compose up

Publish to GitHub Container Registry

We can publish this image to the GitHub Container Registry with GitHub Packages. This will require pushing our project to a GitHub repository.

Create GitHub Repository

Initialize Git, create a blank repository, and push to newly created repo

Terminal window
git init
git add .
git commit -m "A container for my graph"
gh repo create ajcwebdev-express-graphql-docker --public \
--push \
--source=. \
--description="An example GraphQL Express server containerized with Docker and deployed on Fly" \
--remote=upstream

GitHub Packages is a platform for hosting and managing packages that combines your source code and packages in one place including containers and other dependencies. You can integrate GitHub Packages with GitHub APIs, GitHub Actions, and webhooks to create an end-to-end DevOps workflow that includes your code, CI, and deployment solutions.

GitHub Packages offers different package registries for commonly used package managers, such as npm, RubyGems, Maven, Gradle, and Docker. GitHub’s Container registry is optimized for containers and supports Docker and OCI images.

Login to the GitHub Container Registry

To login, create a PAT (personal access token) with the ability to read, write, and delete packages and include it instead of xxxx.

Terminal window
export CR_PAT=xxxx

Login with your own username in place of ajcwebdev.

Terminal window
echo $CR_PAT | docker login ghcr.io -u ajcwebdev --password-stdin

Tag Image

Terminal window
docker tag ajcwebdev/ajcwebdev-express-graphql-docker ghcr.io/ajcwebdev/ajcwebdev-express-graphql-docker

Push to Registry

Terminal window
docker push ghcr.io/ajcwebdev/ajcwebdev-express-graphql-docker:latest

Pull Image

To test that our project has a docker image published to a public registry, pull it from your local development environment.

Terminal window
docker pull ghcr.io/ajcwebdev/ajcwebdev-express-graphql-docker

You can view this published container on my GitHub.

Deploy to Fly

You can download the flyctl CLI on Mac, Linux, or Windows.

Terminal window
brew install superfly/tap/flyctl

Install and Authenticate Fly CLI

If you are a new user you can create an account with fly auth signup.

Terminal window
fly auth signup

You will also be prompted for credit card payment information, required for charges outside the free plan on Fly. See Pricing for more details. If you already have an account you can login with fly auth login.

Terminal window
fly auth login

Launch App on Fly

Run fly launch in the directory with your source code to configure your app for deployment. This will create and configure a fly app by inspecting your source code and prompting you to deploy.

Terminal window
fly launch --name ajcwebdev-express-graphql-docker

Select a region and skip adding a PostgreSQL database. When asked if you want to deploy, select No.

Your app is ready. Deploy with `flyctl deploy`
? Would you like to deploy now? No

The launch command created a fly.toml file.

app = "ajcwebdev-express-graphql-docker"
kill_signal = "SIGINT"
kill_timeout = 5
processes = []
[env]
[experimental]
allowed_public_ports = []
auto_rollback = true
[[services]]
http_checks = []
internal_port = 8080
processes = ["app"]
protocol = "tcp"
script_checks = []
[services.concurrency]
hard_limit = 25
soft_limit = 20
type = "connections"
[[services.ports]]
handlers = ["http"]
port = 80
[[services.ports]]
handlers = ["tls", "http"]
port = 443
[[services.tcp_checks]]
grace_period = "1s"
interval = "15s"
restart_limit = 6
timeout = "2s"

Add the following PORT number under env.

[env]
PORT = 8080

Deploy Fly Application

Terminal window
fly deploy

Show the Application Status

Status includes application details, tasks, most recent deployment details and in which regions it is currently allocated.

Terminal window
fly status
App
Name = ajcwebdev-express-graphql-docker
Owner = personal
Version = 0
Status = running
Hostname = ajcwebdev-express-graphql-docker.fly.dev
Deployment Status
ID = fd7bf249-c37f-7b16-5643-9bfd104a2077
Version = v0
Status = successful
Description = Deployment completed successfully
Instances = 1 desired, 1 placed, 1 healthy, 0 unhealthy
Instances
ID TASK VERSION REGION DESIRED STATUS HEALTH CHECKS RESTARTS CREATED
9eb4eaf9 app 0 sjc run running 1 total, 1 passing 0 1m15s ago

Visit ajcwebdev-express-graphql-docker.fly.dev/graphql to see the site and run a test query.

query HELLO_QUERY { hello }

04 - ajcwebdev-express-graphql-docker-fly-dev-hello

Terminal window
curl 'https://ajcwebdev-express-graphql-docker.fly.dev/graphql' \
--header 'content-type: application/json' \
--data '{"query":"{ hello }"}'