heyform not loading

Hello I am new here I installed Dokploy to use heyform I installed redis and mongodb I added into the file and the website will not load
24 Replies
Siumauricio
Siumauricioβ€’5mo ago
for me is working fine
πŸŽ— Timmy πŸŽ—
πŸŽ— Timmy πŸŽ—OPβ€’5mo ago
I'm using the mongo db off the website
services:
heyform:
image: heyform/community-edition:latest
restart: always
volumes:
# Persist uploaded images
- heyform-data:/app/static/upload
depends_on:
- mongo
- redis
ports:
- 8000
env_file:
- .env
environment:
MONGO_URI: 'mongodb://test:<password>@cubecloud-test-jseevk:27017'
REDIS_HOST: redis
REDIS_PORT: 6379
networks:
- heyform-network

mongo:
image: percona/percona-server-mongodb:4.4
restart: always
networks:
- heyform-network
volumes:
# Persist MongoDB data
- mongo-data:/data/db

redis:
image: redis
restart: always
command: "redis-server --appendonly yes"
networks:
- heyform-network
volumes:
# Persist KeyDB data
- redis-data:/data

networks:
heyform-network:
driver: bridge

volumes:
heyform-data:
mongo-data:
redis-data:
services:
heyform:
image: heyform/community-edition:latest
restart: always
volumes:
# Persist uploaded images
- heyform-data:/app/static/upload
depends_on:
- mongo
- redis
ports:
- 8000
env_file:
- .env
environment:
MONGO_URI: 'mongodb://test:<password>@cubecloud-test-jseevk:27017'
REDIS_HOST: redis
REDIS_PORT: 6379
networks:
- heyform-network

mongo:
image: percona/percona-server-mongodb:4.4
restart: always
networks:
- heyform-network
volumes:
# Persist MongoDB data
- mongo-data:/data/db

redis:
image: redis
restart: always
command: "redis-server --appendonly yes"
networks:
- heyform-network
volumes:
# Persist KeyDB data
- redis-data:/data

networks:
heyform-network:
driver: bridge

volumes:
heyform-data:
mongo-data:
redis-data:
That is my thing password was taken out for reasons
Siumauricio
Siumauricioβ€’5mo ago
why don't use the template we have?
πŸŽ— Timmy πŸŽ—
πŸŽ— Timmy πŸŽ—OPβ€’5mo ago
I am
Siumauricio
Siumauricioβ€’5mo ago
I tested five mins agoa dn is working fine
πŸŽ— Timmy πŸŽ—
πŸŽ— Timmy πŸŽ—OPβ€’5mo ago
That is the template http://cubecloud-heyform-5bbba6-92-113-100-72.traefik.me Website loads gateway timeout
πŸŽ— Timmy πŸŽ—
πŸŽ— Timmy πŸŽ—OPβ€’5mo ago
I only changed the mongodb link As I needed to make that I'll redo it and try again Anyother thoughts?
Siumauricio
Siumauricioβ€’5mo ago
No idea sorry, I have tried it and it works
πŸŽ— Timmy πŸŽ—
πŸŽ— Timmy πŸŽ—OPβ€’5mo ago
Could I add you to mine and you can see it
drudge
drudgeβ€’5mo ago
Timmy - is the issue that you're not exposing it to the dokploy-network?
πŸŽ— Timmy πŸŽ—
πŸŽ— Timmy πŸŽ—OPβ€’5mo ago
How can I check this
drudge
drudgeβ€’5mo ago
change from:
networks:
- heyform-network
networks:
- heyform-network
to
networks:
- dokploy-network
networks:
- dokploy-network
and the definition from:
networks:
heyform-network:
driver: bridge
networks:
heyform-network:
driver: bridge
to
networks:
dokploy-network:
external: true
networks:
dokploy-network:
external: true
and see if it resolves your issue
πŸŽ— Timmy πŸŽ—
πŸŽ— Timmy πŸŽ—OPβ€’5mo ago
Okay I will try that That worked, is there any admin or anything for this? . So I can have others not making forms or anything
drudge
drudgeβ€’5mo ago
Sorry I can't really help you with HeyForm, I've never used it
πŸŽ— Timmy πŸŽ—
πŸŽ— Timmy πŸŽ—OPβ€’5mo ago
Oh okay It is working although thank you
drudge
drudgeβ€’5mo ago
Generally speaking you need your host exposed on the dokploy-network in order for traffic to reach it properly
πŸŽ— Timmy πŸŽ—
πŸŽ— Timmy πŸŽ—OPβ€’5mo ago
Ah okay So If I am having issues with others I should do the same
chris86tian
chris86tianβ€’3mo ago
where should i add the smtp server? In the Environment Variables does not work.
drudge
drudgeβ€’3mo ago
they should work in the environment. Your compose still has env_file in it I assume
chris86tian
chris86tianβ€’3mo ago
Here are my settings: I want to send over my smpt server from all-inkl.com. Any Idea? Update now these settings works: SMTP-Konfiguration fΓΌr Heyform SMTP_FROM="HeyForm <[email protected]>" SMTP_HOST="w0199343.kasserver.com" SMTP_PORT=587 [email protected] SMTP_PASSWORD=
Sang Dang
Sang Dangβ€’2w ago
I think I face the same issue with @chris86tian , currently I can not send email at all with this template, I can be sure my credentials correct, I also updated the dokploy-network
No description
No description
Sang Dang
Sang Dangβ€’2w ago
I used Cline to find the solution. Ha ha ha. I cloned the HeyForm source code, ask Cline (using Deepseek R1 model) to read it and show it my problem. TLDR: Change SMTP_SECURE to false and it works!
Sang Dang
Sang Dangβ€’2w ago
No description

Did you find this page helpful?