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 09d6dd9 commit d905ea3Copy full SHA for d905ea3
1 file changed
README.md
@@ -30,10 +30,11 @@ Self-hosted form builder. Privacy-friendly alternative to Google Forms.
30
31
```bash
32
docker run -d \
33
- -p 80:80 \
+ -p 8080:8080 \
34
-v formera-data:/app/data \
35
-e BASE_URL=https://forms.example.com \
36
-e JWT_SECRET=your-secure-secret-here \
37
+ -e PORT=8080 \
38
ghcr.io/formeraapp/formera:latest
39
```
40
@@ -46,13 +47,14 @@ services:
46
47
container_name: formera
48
restart: unless-stopped
49
environment:
50
+ - PORT=8080
51
- BASE_URL=https://forms.example.com
52
- JWT_SECRET=your-secure-secret-here
53
# - CORS_ORIGIN=https://other-domain.com # Optional: only if frontend is on different domain
54
volumes:
55
- formera-data:/app/data
56
ports:
- - "80:80"
57
+ - "8080:8080"
58
59
60
formera-data:
0 commit comments