Skip to content

Commit

Permalink
ci: fix references to broken upstream repos
Browse files Browse the repository at this point in the history
  • Loading branch information
tobybellwood committed Apr 12, 2024
1 parent ebc9dcc commit 5cae06e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pygmy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,13 +250,13 @@ jobs:
- name: "[Example] Drupal Postgres"
run: |
cd lagoon-examples/drupal9-postgres;
cd lagoon-examples/drupal-postgres;
docker-compose -p drupal-postgres up -d;
docker-compose -p drupal-postgres exec -T cli composer install;
dockerize -wait http://drupal9-postgres.docker.amazee.io:80 -timeout 10s;
curl --HEAD http://drupal9-postgres.docker.amazee.io;
curl --HEAD http://drupal9-postgres.docker.amazee.io | grep -i "x-lagoon";
../../pygmy-linux-amd64 status | grep '\- http://drupal9-postgres.docker.amazee.io';
dockerize -wait http://drupal-postgres.docker.amazee.io:80 -timeout 10s;
curl --HEAD http://drupal-postgres.docker.amazee.io;
curl --HEAD http://drupal-postgres.docker.amazee.io | grep -i "x-lagoon";
../../pygmy-linux-amd64 status | grep '\- http://drupal-postgres.docker.amazee.io';
docker-compose -p drupal-postgres down;
docker-compose -p drupal-postgres rm;
cd ../../;
Expand Down
2 changes: 1 addition & 1 deletion docs/drupal_site_containers.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ During [Part I](./local_docker_development.md#part-i-shared-docker-containers) w

## Find the right `docker-compose.yml`

1. Visit https://github.com/uselagoon/lagoon-examples or clone https://github.com/lagoon-examples/drupal9-base.git into a folder on your computer
1. Visit https://github.com/uselagoon/lagoon-examples or clone https://github.com/lagoon-examples/drupal-base.git into a folder on your computer
2. Copy the desired example file into your Drupal directory (see descriptions below). Use `example-docker-compose-drupal.yml` if unsure.
3. Rename the file to `docker-compose.yml`
4. Edit the file according to your needs, change at least the host name. _BTW: It's perfectly fine to commit this file into your git repository, so others that are also using docker can use it as well._
Expand Down
2 changes: 1 addition & 1 deletion docs/local_docker_development.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The Docker Containers which will run Drupal. These are made to be copied into a

## What it includes

An example local Docker Drupal Development environment, such as https://www.github.com/lagoon-examples/drupal9-solr, equips you with all the tools you need to develop your Drupal site locally:
An example local Docker Drupal Development environment, such as https://www.github.com/lagoon-examples/drupal-solr, equips you with all the tools you need to develop your Drupal site locally:

* **Webserver:** Nginx
* **Frontend Caching:** Varnish
Expand Down

0 comments on commit 5cae06e

Please sign in to comment.