We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdac335 commit 23e0693Copy full SHA for 23e0693
README.md
@@ -1,13 +1,28 @@
1
-# Simple docker image for claw.cloud
+# Simple docker image for [claw.cloud](https://run.claw.cloud)
2
3
<br>
4
5
### 📦 Run:
6
-```exec
+```sh
7
docker pull ghcr.io/vauth/test-docker:main
8
```
9
10
-### How it works?
+<br>
11
+
12
+### 🚀 How it works?
13
- Add `claw.sh` file in your project and fill it with required cmds.
14
- Launch a project in run.claw.clouds & this docker image in your project.
15
- Import `GITHUB_URL` including your project URL into environment variables.
16
17
18
19
+### 📚 Sample `claw.sh`:
20
21
+#!/bin/bash
22
23
+git clone https://github.com/Vauth/fastapi
24
+cd fastapi || exit
25
+pip3 install -r requirements.txt --break-system-packages
26
+python3 fast.py
27
28
+```
0 commit comments