We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 696c19b commit 5be4545Copy full SHA for 5be4545
README.md
@@ -52,6 +52,12 @@ pyenv install 3.11.3
52
docker run -d -p 8080:8080 --name pastepyprod mrsunglasses/pastepy
53
```
54
55
+- **Using docker-compose**:
56
+ You can also use docker-compose to run the project locally by running the following command:
57
+ ```bash
58
+ docker-compose up -d
59
+ ```
60
+
61
## Local setup 🛠️ without Docker 🐳
62
63
### Setting Up the Project with PDM
docker-compose.yaml
@@ -0,0 +1,10 @@
1
+version: '3.8'
2
3
+services:
4
+ myapp:
5
+ build:
6
+ context: .
7
+ target: builder
8
+ ports:
9
+ - "8080:8080"
10
+ command: ["pdm", "run", "start"]
0 commit comments