Skip to content

Commit a348255

Browse files
committed
udpate docs and examples to use new images
1 parent b5f3d20 commit a348255

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

docs/contrib/evangelist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ These are intended to try and convince a more-technical audience to adopt Lando.
105105
* **Parity** - Achieve parity with each project's hosting target.
106106
* **Tooling** - Containerize tools along with services and lock down versions of things like `node` on a project to project basis. Say goodbye to things like `rvm` forever.
107107
* **VCS** - Put your Landofile configuration in version control so it can be shared and tracked.
108-
* **Integrations** - Integrate with hosting providers like [Pantheon](https://pantheon.io) or [Platform.sh](https://platform.sh).
108+
* **Integrations** - Integrate with hosting providers like [Pantheon](https://pantheon.io).
109109
* **Sane defaults** - Lando will give you recommended settings out of the box but it is hyper-configurable. You can have a two line or two hundred line Landofile.
110110

111111
### Key Differences

docs/contrib/sponsoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Asking your boss to sponsor Lando might seem tough. Why should they pay for some
7979

8080
### They're Ready to Sponsor. Now What?
8181

82-
Most organizations will want to sponsor directly through our [Github sponsors page](https://github.com/sponsors/lando). If Lando saves your organization at least a couple hours each month, we highly encourage you making a recurring contribution, but for one-time contributions [Open Collective](https://opencollective.com/lando#category-CONTRIBUTE) can be more convenient.
82+
Most organizations will want to sponsor directly through our [Github sponsors page](https://github.com/sponsors/lando). If Lando saves your organization at least a couple hours each month, we highly encourage you making a recurring contribution, but for one-time contributions [Open Collective](https://opencollective.com/lando) can be more convenient.
8383

8484
To take full advantage of sponsorship benefits your organization will want to reach out to <sponsorships@lando.dev>.
8585

examples/certs/.lando.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ services:
1313
sslExpose: true
1414
sport: "8443"
1515
services:
16-
image: bitnami/nginx
16+
image: bitnamilegacy/nginx
1717
command: /opt/bitnami/scripts/nginx/entrypoint.sh /opt/bitnami/scripts/nginx/run.sh
1818
ports:
1919
- "8080"

examples/proxy/.lando.stripped.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ services:
6666
ssl: true
6767
sslExpose: false
6868
services:
69-
image: bitnami/nginx
69+
image: bitnamilegacy/nginx
7070
command: /opt/bitnami/scripts/nginx/entrypoint.sh /opt/bitnami/scripts/nginx/run.sh
7171
volumes:
7272
- "./:/app"

examples/proxy/.lando.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ services:
8888
ssl: true
8989
sslExpose: false
9090
services:
91-
image: bitnami/nginx
91+
image: bitnamilegacy/nginx
9292
command: /opt/bitnami/scripts/nginx/entrypoint.sh /opt/bitnami/scripts/nginx/run.sh
9393
volumes:
9494
- "./:/app"

examples/sql-helpers/.lando.sqlhelpers.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
overrides:
88
platform: linux/amd64
99
services:
10-
image: bitnami/mariadb:10.4
10+
image: bitnamilegacy/mariadb:10.4
1111
command: /opt/bitnami/scripts/mariadb/entrypoint.sh /opt/bitnami/scripts/mariadb/run.sh
1212
environment:
1313
ALLOW_EMPTY_PASSWORD: yes
@@ -22,7 +22,7 @@ services:
2222
overrides:
2323
platform: linux/amd64
2424
services:
25-
image: bitnami/mariadb:10.4
25+
image: bitnamilegacy/mariadb:10.4
2626
command: /opt/bitnami/scripts/mariadb/entrypoint.sh /opt/bitnami/scripts/mariadb/run.sh
2727
environment:
2828
ALLOW_EMPTY_PASSWORD: yes
@@ -36,7 +36,7 @@ services:
3636
type: lando
3737
healthcheck: mysqladmin ping -h mysql57 -u test -ptest
3838
services:
39-
image: bitnami/mysql:5.7
39+
image: bitnamilegacy/mysql:5.7
4040
command: /opt/bitnami/scripts/mysql/entrypoint.sh /opt/bitnami/scripts/mysql/run.sh
4141
environment:
4242
ALLOW_EMPTY_PASSWORD: yes
@@ -49,7 +49,7 @@ services:
4949
type: lando
5050
healthcheck: mysqladmin ping -h mysql57-default -u test -ptest
5151
services:
52-
image: bitnami/mysql:5.7
52+
image: bitnamilegacy/mysql:5.7
5353
command: /opt/bitnami/scripts/mysql/entrypoint.sh /opt/bitnami/scripts/mysql/run.sh
5454
environment:
5555
ALLOW_EMPTY_PASSWORD: yes
@@ -63,7 +63,7 @@ services:
6363
type: lando
6464
healthcheck: mysqladmin ping -h mysql80 -u test -ptest
6565
services:
66-
image: bitnami/mysql:8.0
66+
image: bitnamilegacy/mysql:8.0
6767
command: /opt/bitnami/scripts/mysql/entrypoint.sh /opt/bitnami/scripts/mysql/run.sh
6868
environment:
6969
ALLOW_EMPTY_PASSWORD: yes
@@ -76,7 +76,7 @@ services:
7676
type: lando
7777
healthcheck: mysqladmin ping -h mysql80-default -u test -ptest
7878
services:
79-
image: bitnami/mysql:8.0
79+
image: bitnamilegacy/mysql:8.0
8080
command: /opt/bitnami/scripts/mysql/entrypoint.sh /opt/bitnami/scripts/mysql/run.sh
8181
environment:
8282
ALLOW_EMPTY_PASSWORD: yes
@@ -90,7 +90,7 @@ services:
9090
type: lando
9191
healthcheck: pg_isready -h postgres16 -U postgres
9292
services:
93-
image: bitnami/postgresql:16.3.0
93+
image: bitnamilegacy/postgresql:16.3.0
9494
command: /opt/bitnami/scripts/postgresql/entrypoint.sh /opt/bitnami/scripts/postgresql/run.sh
9595
environment:
9696
ALLOW_EMPTY_PASSWORD: yes
@@ -101,7 +101,7 @@ services:
101101
type: lando
102102
healthcheck: pg_isready -h postgres16-default -U postgres
103103
services:
104-
image: bitnami/postgresql:16.3.0
104+
image: bitnamilegacy/postgresql:16.3.0
105105
command: /opt/bitnami/scripts/postgresql/entrypoint.sh /opt/bitnami/scripts/postgresql/run.sh
106106
environment:
107107
ALLOW_EMPTY_PASSWORD: yes

0 commit comments

Comments
 (0)