diff --git a/README.md b/README.md
index 2bdeb3a..004b63e 100644
--- a/README.md
+++ b/README.md
@@ -1,32 +1 @@
-[](https://flagsmith.com/)
-
-[Flagsmith](https://www.flagsmith.com/) is an open source, fully featured, Feature Flag and Remote Config service. Use our hosted API, deploy to your own private cloud, or run on-premise.
-
-# Flagsmith
-
-Flagsmith makes it easy to create and manage features flags across web, mobile, and server side applications. Just wrap a section of code with a flag, and then use Flagsmith to toggle that feature on or off for different environments, users or user segments.
-
-
-
-## Features
-
-* **Feature flags**. Release features with confidence through phased rollouts.
-* **Remote config**. Easily toggle individual features on and off, and make changes without deploying new code.
-* **A/B and Multivariate Testing**. Use segments to run A/B and multivariate tests on new features. With segments, you can also introduce beta programs to get early user feedback.
-* **Organization Management**. Organizations, projects, and roles for team members help keep your deployment organized.
-* **Integrations**. Easily enhance Flagsmith with your favourite tools.
-
-## Using Flagsmith
-
-* **Flagsmith hosted**. You can try our hosted version for free at https://www.flagsmith.com/
-* **Flagsmith open source**. The Flagsmith API is built using Python 3, Django 2, and DjangoRestFramework 3. You can begin running the open source application using docker-compose. We also have options fore deploying to AWS, Kubernetes and OpenShift.
-
-## Getting Started
-
-For full documentation visit https://docs.flagsmith.com/docker/
-
-## Resources
-
-* [Website](https://www.flagsmith.com/)
-* [Documentation](https://docs.flagsmith.com/)
-* If you have any questions about our projects you can email [support@flagsmith.com](mailto:support@flagsmith.com)
+This repo has been moved to https://github.com/Flagsmith/flagsmith
diff --git a/docker-compose.yml b/docker-compose.yml
deleted file mode 100644
index df57f8e..0000000
--- a/docker-compose.yml
+++ /dev/null
@@ -1,50 +0,0 @@
-# See https://docs.flagsmith.com/docker/ for more information on running Flagsmith in Docker
-
-version: "3"
-services:
- api:
- image: flagsmith/flagsmith-api:latest
- environment:
- DJANGO_ALLOWED_HOSTS: "*" # Change this in production
- DATABASE_URL: postgresql://postgres:password@db:5432/flagsmith
- # INFLUXDB_URL: http://influxdb:8086
- # INFLUXDB_BUCKET: flagsmith_api
- # INFLUXDB_ORG: # Add your influx org id here - see readme.md
- # INFLUXDB_TOKEN: # Add your influx token here - see readme.md
- ports:
- - "8000:8000"
- depends_on:
- - db
- links:
- - db:db
- # - influxdb:influxdb
- container_name: flagsmith_api
-
- frontend:
- image: flagsmith/flagsmith-frontend:latest
- environment:
- # You might need to change the 2 host names below depending on your docker dns setup
- API_URL: http://localhost:8000/api/v1/
- ASSET_URL: http://localhost:8080/
- DISABLE_INFLUXDB_FEATURES: 1 # Switch to 0 to enable InfluxDB
- FLAGSMITH: 4vfqhypYjcPoGGu8ByrBaj # This is the production Flagsmith API key
- ports:
- - "8080:8080"
- links:
- - api:api
- container_name: flagsmith_frontend
-
- db:
- image: postgres:11.12-alpine
- environment:
- POSTGRES_PASSWORD: password
- POSTGRES_DB: flagsmith
- container_name: flagsmith_postgres
-
- # InfluxDB requires additional setup - please see https://docs.flagsmith.com/deployment-overview/#influxdb
- # Note that InfluxDB is optional, but enabling it will provide additional functionality to the Flagsmith platform
- # influxdb:
- # image: quay.io/influxdb/influxdb:v2.0.3
- # container_name: flagsmith_influxdb
- # ports:
- # - "8086:8086"