DEV Community

Cover image for Deploy a GraphQL Server with Docker and Fly
ajcwebdev
ajcwebdev

Posted on • Updated on • Originally published at ajcwebdev.com

Deploy a GraphQL Server with Docker and Fly

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 full stack 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

mkdir ajcwebdev-express-graphql-docker
cd ajcwebdev-express-graphql-docker
yarn init -y
yarn add express express-graphql graphql
Enter fullscreen mode Exit fullscreen mode

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

echo > index.js
echo > Dockerfile
echo > docker-compose.yml
Enter fullscreen mode Exit fullscreen mode

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.

echo 'node_modules\nDockerfile\n.dockerignore\n.git\n.gitignore\nnpm-debug.log' > .dockerignore
Enter fullscreen mode Exit fullscreen mode

Include a .gitignore file for node_modules.

echo 'node_modules\n.DS_Store' > .gitignore
Enter fullscreen mode Exit fullscreen mode

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`)
})
Enter fullscreen mode Exit fullscreen mode

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:

node index
Enter fullscreen mode Exit fullscreen mode

Your terminal will log this message:

Express GraphQL server running on http://localhost:8080/graphql
Enter fullscreen mode Exit fullscreen mode

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

01-graphiql-explorer-on-localhost-8080

query HELLO_QUERY { hello }
Enter fullscreen mode Exit fullscreen mode

02-express-graphql-hello-localhost-8080

curl 'http://localhost:8080/graphql' \
  --header 'content-type: application/json' \
  --data '{"query":"{ hello }"}'
Enter fullscreen mode Exit fullscreen mode

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" ]
Enter fullscreen mode Exit fullscreen mode

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
docker build . -t ajcwebdev/ajcwebdev-express-graphql-docker
Enter fullscreen mode Exit fullscreen mode

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.

docker images
Enter fullscreen mode Exit fullscreen mode
REPOSITORY - ajcwebdev/ajcwebdev-express-graphql-docker
TAG - latest
IMAGE ID - d833d418e179
CREATED - About a minute ago
SIZE - 122MB
Enter fullscreen mode Exit fullscreen mode

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.

docker run -p 49160:8080 -d ajcwebdev/ajcwebdev-express-graphql-docker
Enter fullscreen mode Exit fullscreen mode

-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:

docker ps
Enter fullscreen mode Exit fullscreen mode
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
Enter fullscreen mode Exit fullscreen mode

Print the output of your app with docker logs.

docker logs <container id>
Enter fullscreen mode Exit fullscreen mode
Express GraphQL server running on http://localhost:8080/graphql
Enter fullscreen mode Exit fullscreen mode

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 }
Enter fullscreen mode Exit fullscreen mode

03-localhost-49160-graphql

curl 'http://localhost:49160/graphql' \
  --header 'content-type: application/json' \
  --data '{"query":"{ hello }"}'
Enter fullscreen mode Exit fullscreen mode

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"
Enter fullscreen mode Exit fullscreen mode

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

docker stop <container id>
Enter fullscreen mode Exit fullscreen mode

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

docker compose up
Enter fullscreen mode Exit fullscreen mode

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

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
Enter fullscreen mode Exit fullscreen mode

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.

export CR_PAT=xxxx
Enter fullscreen mode Exit fullscreen mode

Login with your own username in place of ajcwebdev.

echo $CR_PAT | docker login ghcr.io -u ajcwebdev --password-stdin
Enter fullscreen mode Exit fullscreen mode

Tag Image

docker tag ajcwebdev/ajcwebdev-express-graphql-docker ghcr.io/ajcwebdev/ajcwebdev-express-graphql-docker
Enter fullscreen mode Exit fullscreen mode

Push to Registry

docker push ghcr.io/ajcwebdev/ajcwebdev-express-graphql-docker:latest
Enter fullscreen mode Exit fullscreen mode

Pull Image

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

docker pull ghcr.io/ajcwebdev/ajcwebdev-express-graphql-docker
Enter fullscreen mode Exit fullscreen mode

You can view this published container on my GitHub.

Deploy to Fly

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

brew install superfly/tap/flyctl
Enter fullscreen mode Exit fullscreen mode

Install and Authenticate Fly CLI

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

fly auth signup
Enter fullscreen mode Exit fullscreen mode

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.

fly auth login
Enter fullscreen mode Exit fullscreen mode

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.

fly launch --name ajcwebdev-express-graphql-docker
Enter fullscreen mode Exit fullscreen mode

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
Enter fullscreen mode Exit fullscreen mode

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"
Enter fullscreen mode Exit fullscreen mode

Add the following PORT number under env.

[env]
  PORT = 8080
Enter fullscreen mode Exit fullscreen mode

Deploy Fly Application

fly deploy
Enter fullscreen mode Exit fullscreen mode

Show the Application Status

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

fly status
Enter fullscreen mode Exit fullscreen mode
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
Enter fullscreen mode Exit fullscreen mode

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

query HELLO_QUERY { hello }
Enter fullscreen mode Exit fullscreen mode

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

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

Top comments (0)