Migrate from the single Docker image to Docker Compose

⚠️ We recommend new users use our machine image or script-install instructions, which are easier and offer more flexibility when configuring Sourcegraph. Existing customers can reach out to our Customer Engineering team [email protected] if they wish to migrate to these deployment models.


Since Sourcegraph 3.13, deploying via Docker Compose is the recommended method for production deployments as it provides resource isolation between Sourcegraph services which makes it more scalable and stable. This page describes how to migrate from a single Docker image deployment to the Docker Compose deployment method.

Sourcegraph's core data (including user accounts, configuration, repository-metadata, etc.), can be migrated from the single Docker image (sourcegraph/server) to the Docker Compose deployment by dumping and restoring the Postgres database.

Notes before you begin

Version requirements

  • This migration can only be done with Sourcegraph v3.13.1+. If you are not currently on at least this version, please upgrade first.
  • Use the docker-compose version corresponding to your current Sourcegraph version. Do NOT attempt to upgrade at the same time as migrating to docker-compose.
  • For example, if the Sourcegraph instance sourcegraph/server image is version v3.19.2 you must follow this guide using the Docker Compose deployment version v3.19.2. That means you must migrate to a new instance that is on the same version you took the Database dump from.

Storage location change

After migration, Sourcegraph's data will be stored in Docker volumes instead of ~/.sourcegraph/. For more information, see the cloud-provider documentation referred to in "Create the new Docker Compose instance".

Only core data will be migrated

The migration will bring over core data including user accounts, configuration, repository-metadata, etc. Other data will be regenerated automatically:

  • Repositories will be re-cloned
  • Search indexes will be rebuilt from scratch

The above may take awhile if you have a lot of repositories. In the meantime, searches may be slow or return incomplete results. Usually this process will not take longer than 6 hours.

Monthly-usage based pricing

If you are on a monthly-based usage pricing model, please check first with your Sourcegraph point of contact before continuing with these migration steps.

Migration guide

If you wish to automate the migration process, a script has been provided in the deploy-sourcegraph-docker repository which will backup and migrate your single server database to a docker-compose deployment.

To manually migrate use the steps outlined below.

Backup single Docker image database

Find single Docker image's CONTAINER_ID

  • ssh from your local machine into the instance hosting the sourcegraph/server container
  • Run the following command to find the sourcegraph/server's CONTAINER_ID:
> docker ps
CONTAINER ID        IMAGE
...                 sourcegraph/server

Generate database dump

  • Dump Postgres database to /tmp/db.out
# Use the CONTAINER_ID found in the previous step
docker exec -it "$CONTAINER_ID" sh -c 'pg_dump -C --clean --if-exists --username=postgres sourcegraph' > /tmp/sourcegraph_db.out

docker exec -it "$CONTAINER_ID" sh -c 'pg_dump -C --clean --if-exists --username=postgres sourcegraph-codeintel' > /tmp/codeintel_db.out
  • Copy Postgres dump from the sourcegraph/server container to the host machine
docker cp "$CONTAINER_ID":/tmp/*_db.out /tmp/

Copy database dump to your local machine

  • End your ssh session with the sourcegraph/server host machine

  • Copy the Postgres dump from the sourcegraph/server host to your local machine:

# Modify this command with your authentication information
scp example_user@example_docker_host.com:/tmp/*.out <local_dir>
  • Run less "/tmp/sourcegraph_db.out" and less "/tmp/codeintel_db.out" and verify that the database dump has contents that you expect (e.g. that some of your repository names appear)

Create the new Docker Compose instance

Follow your cloud provider's installation guide to create the new Docker Compose instance:

Once you have finished the above, come back here for directions on how to copy over the database from your old sourcegraph/server instance.

Restore database backup to the Docker Compose instance

Prepare the Postgres instance

  • ssh from your local machine into the new instance running the Docker Compose deployment

  • Navigate to the directory containing the Docker Compose definition:

# Refer to the script in your cloud provider's installation guide
# to find the value for "DEPLOY_SOURCEGRAPH_DOCKER_CHECKOUT"

cd "$DEPLOY_SOURCEGRAPH_DOCKER_CHECKOUT"/docker-compose
  • Tear down the existing Docker Compose containers (and associated volumes) so that we avoid conflicting transactions while modifying the database
 docker-compose down --volumes
  • Start the Postgres instance on its own
docker-compose -f db-only-migrate.docker-compose.yaml up -d
  • End your ssh session with the new Docker Compose deployment host

Apply database dump to Postgres instance

  • Copy the Postgres dump from your local machine to the Docker Compose host:
# Modify this command with your authentication information
scp *db.out example_user@example_docker_compose_host.com:/tmp/
  • ssh from your local machine into the Docker Compose deployment host

  • Copy database dump from the Docker Compose host to the Postgres container

docker cp /tmp/sourcegraph_db.out pgsql:/tmp/
docker cp /tmp/codeintel_db.out codeintel-db:/tmp/
  • Create a shell session inside the pgsql container
docker exec -it pgsql /bin/sh
  • Restore the database dump
psql --username=sg -f /tmp/sourcegraph_db.out postgres
  • Open up a psql session inside the Postgres container
psql --username=sg postgres
  • Apply the following tweaks to transform the single Docker image's database schema into Docker Compose's
DROP DATABASE sg;
ALTER DATABASE sourcegraph RENAME TO sg;
ALTER DATABASE sg OWNER TO sg;
  • End your psql session
\q
  • End your Postgres container shell session
exit
  • Create a shell session inside the codeintel-db container
docker exec -it codeintel-db /bin/sh
  • Restore the database dump
psql --username=sg -f /tmp/codeintel_db.out postgres
  • Open up a psql session inside the Postgres container
psql --username=sg postgres
  • Apply the following tweaks to transform the single Docker image's database schema into Docker Compose's
DROP DATABASE sg;
ALTER DATABASE "sourcegraph-codeintel" RENAME TO sg;
ALTER DATABASE sg OWNER TO sg;
  • End your psql session
\q
  • End your Postgres container shell session
exit

Start the rest of the Sourcegraph containers

docker-compose -f docker-compose.yaml up -d

Conclusion

The migration process is now complete.

You should be able to log into your instance and verify that previous users and configuration are still present. Repositories may take awhile to clone and index, but their names should be immediately visible in the site admin repositories list. Wait for repositories to clone and verify the new Sourcegraph instance works as expected.

After verifying the new instance is functional, you can tear down the old sourcegraph/server single Docker container Sourcegraph instance.