Skip to content

Commit

Permalink
Add troubleshooting step for app not making
Browse files Browse the repository at this point in the history
  • Loading branch information
deborahchua committed Jul 13, 2023
1 parent 3ea2d5e commit e99212c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,3 +198,19 @@ services:
```

For further examples, see the PR [alphagov/govuk-docker#613](https://github.com/alphagov/govuk-docker/pull/613).

## Resolve issue with a project/app not making

You may get this error when running `make <app-name>`.

```
=> ERROR [ 2/11] RUN apt-get update -qq && apt-get install -y chromium chromium-driverq
...
executor failed running [/bin/sh -c apt-get update -qq && apt-get install -y chromium chromium-driver]: exit code: 100
```

This may resolve by removing orphan containers which were created in a previous run of docker-compose up, but which has since been deleted from the docker-compose.yml file

```
docker-compose down -v --rmi all --remove-orphans
```

0 comments on commit e99212c

Please sign in to comment.