🚀 Initial commit: Dokploy Dashboard Pro with container controls

This commit is contained in:
2025-06-22 13:32:57 +02:00
parent 7950c13085
commit 7d2c8b71a3
5 changed files with 92 additions and 0 deletions

17
next.config.js Normal file
View File

@@ -0,0 +1,17 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
appDir: true,
},
// Allow access to Docker socket
webpack: (config, { isServer }) => {
if (isServer) {
config.externals.push({
'dockerode': 'dockerode'
});
}
return config;
}
};
module.exports = nextConfig;