Skip to content

Commit a2547d4

Browse files
author
John Ouellet
authoredFeb 15, 2022
Adjust source image, README, CHANGELOG (#9)
* Adjust source image, README, CHANGELOG * Adjust README * Trigger Build
1 parent 6c5c5fd commit a2547d4

File tree

4 files changed

+46
-7
lines changed

4 files changed

+46
-7
lines changed
 

‎.gitpod.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Learn more about this file at https://www.gitpod.io/docs/references/gitpod-yml
2-
image: devwithlando/gitpod-source:1-edge
2+
image: devwithlando/gitpod:1-edge
33

44
tasks:
55
- name: Setup Gitpod for Lando

‎CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## IN DEVELOPMENT
22

3-
## v0.0.0 - [January 10, 2022](https://github.com/lando/gitpod/releases/tag/v0.0.0)
3+
## v1.0.0 - [February 15, 2022](https://github.com/lando/gitpod/releases/tag/v1.0.0)
44

55
Lando is **free** and **open source** software that relies on contributions from developers like you! If you like Lando then help us spend more time making, updating and supporting it by [contributing](https://github.com/sponsors/lando).
66

‎README.md

+44-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,45 @@
1-
# gitpod
2-
31
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/lando/gitpod)
2+
3+
# Lando Gitpod Intergration
4+
5+
Contains Docker images that you can utilize to run [Lando](https://lando.dev) in your [Gitpod](https://gitpod.io) setup.
6+
7+
Contains 2 images:
8+
9+
- [devwithlando/gitpod](https://hub.docker.com/r/devwithlando/gitpod) which uses the [latest stable release](https://github.com/lando/lando/releases/latest) of Lando.
10+
- [devwithlando/gitpod-source](https://hub.docker.com/r/devwithlando/gitpod-source) which builds Lando [from source](https://docs.lando.dev/basics/installation.html#from-source).
11+
12+
## Basic Usage
13+
14+
in your [.gitpod.yml](https://www.gitpod.io/docs/config-gitpod-file) put the following:
15+
16+
```yaml
17+
image: devwithlando/gitpod:1
18+
19+
tasks:
20+
- name: Start Drupal
21+
command: |
22+
lando start
23+
```
24+
25+
## Issues, Questions and Support
26+
27+
If you have a question or would like some community support we recommend you [join us on Slack](https://launchpass.com/devwithlando). Note that this is the Slack community for [Lando](https://lando.dev) but we are more than happy to help with this module as well!
28+
29+
If you'd like to report a bug or submit a feature request then please [use the issue queue](https://github.com/lando/gitpod/issues/new/choose) in this repo.
30+
31+
## Changelog
32+
33+
We try to log all changes big and small in both [THE CHANGELOG](https://github.com/lando/gitpod/blob/main/CHANGELOG.md) and the [release notes](https://github.com/lando/gitpod/releases).
34+
35+
## Contributors
36+
37+
<a href="https://github.com/lando/gitpod/graphs/contributors">
38+
<img src="https://contrib.rocks/image?repo=lando/gitpod" />
39+
</a>
40+
41+
Made with [contributors-img](https://contrib.rocks).
42+
43+
## Other Resources
44+
45+
* [Important advice](https://www.youtube.com/watch?v=WA4iX5D9Z64)

‎images/stable/Dockerfile

-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@
33
FROM gitpod/workspace-full
44

55
RUN sudo rm /usr/local/bin/docker-compose \
6-
&& sudo curl -fsSL -o /usr/local/bin/docker-compose https://github.com/docker/compose/releases/download/1.29.2/docker-compose-Linux-x86_64 \
7-
&& sudo chmod +x /usr/local/bin/docker-compose \
86
&& sudo groupadd docker \
9-
&& sudo usermod -aG docker $USER \
107
&& wget https://files.lando.dev/installer/lando-x64-latest.deb \
118
&& sudo dpkg -i --ignore-depends docker-ce,iptables lando-x64-latest.deb && rm -rf lando-x64-latest.deb \
129
&& mkdir -p ~/.lando/cache \

0 commit comments

Comments
 (0)
Please sign in to comment.