From b5186980e608bb969cba78b1d3bcb6a29c049dc5 Mon Sep 17 00:00:00 2001 From: Yannic Kilcher Date: Sun, 1 Jan 2023 17:17:05 +0100 Subject: [PATCH] added problems & solutions section to readme --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 369724c1..e0ea65f1 100644 --- a/README.md +++ b/README.md @@ -136,3 +136,9 @@ In case you haven't done this, have already committed, and CI is failing, you ca ### Deployment Upon making a release on GitHub, all docker images are automatically built and pushed to ghcr.io. The docker images are tagged with the release version, and the `latest` tag. Further, the ansible playbook in `ansible/dev.yaml` is run to automatically deploy the built release to the dev machine. + +### Problems and Solutions + +- **I am on Ubuntu and getting `ERROR: The Compose file is invalid because:Service backend has neither an image nor a build context specified. At least one must be provided.`** + + Make sure you have an up-to-date version of docker installed, and also install `docker-compose-plugin`. See [here](https://github.com/LAION-AI/Open-Assistant/issues/208) for more details.