Haku
installing Strapi on Dokploy
I'm trying to install Strapi on Dokploy from my GitHub project.
I have already set up my database, but I'm getting this error:
javascript
Copy
Edit
Error response from daemon: No such container: main-projects-strapi-5n1puq-0qycfyBoCj
Before this, Strapi was successfully installed, but my domain showed a "Bad Gateway" error.
Here is my server configuration:
javascript
Copy
Edit
export default ({ env }) => ({
host: env("HOST", "0.0.0.0"),
port: env.int("PORT", 1379),
app: {
keys: ["myKeyA", "myKeyB", "myKeyC", "myKeyD"],
},
});
Any help would be greatly appreciated!
10 replies