gamegine
gamegine
Hi, a solution is to combine the different template repositories before sending them to Portainer for that you can use this https://www.technorabilia.com/portainer-tools-merge-and-host-app-template-definitions/
its DNS error I have the same due to a change on my network (openvpn setup on docker host server) to confirm it add entrypoint to /bin/bash and try ping...
what cmd you have use to run iperf ? what is your synology model , maybe it's not an x86 cpu and you need to build image
control c can work only in docker interactive shell do you have add arg -it tu your run cmd ?
hello, i run on docker node:20.11.1-alpine image i have try to run dev inside the container is working but not the nuxt build/start
> nuxt start ╭──PreviewMode─────────────────────────────────────╮ │ │ │ You are running Nuxt production build in preview mode. │ │ For production deployments, please directly use node ./server/index.mjs command. │ │ │...
hello, I found the cause of the problem. its 'uri: process.env.CONN_STR' , in defineNuxtConfig something I didn't know yet about env variables in nuxt during the build nuxt incorporates static...
hello, I updated, and that solved the problem :) I also changed my nuxt config to load the config from the env variables in runtime and it also works. ```js...
works with the latest version (1.0.6) ```js export default defineNuxtConfig({ modules: ["nuxt-mongoose"], runtimeConfig: { mongoose: { uri: process.env.NUXT_MONGOOSE_URI }, }, }); ``` change the config env from MONGODB_URI to NUXT_MONGOOSE_URI...
hello, before your nuxt config mongoose.uri was empty, only set in yout .env ?