├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── TUTORIAL.md ├── docker-compose.yml ├── nginx ├── Dockerfile └── default.conf ├── package.json ├── pages ├── about.js └── index.js └── static └── .gitkeep /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveholgado/nextjs-docker-pm2-nginx/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .next/ 3 | node_modules/ -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveholgado/nextjs-docker-pm2-nginx/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveholgado/nextjs-docker-pm2-nginx/HEAD/README.md -------------------------------------------------------------------------------- /TUTORIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveholgado/nextjs-docker-pm2-nginx/HEAD/TUTORIAL.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveholgado/nextjs-docker-pm2-nginx/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveholgado/nextjs-docker-pm2-nginx/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveholgado/nextjs-docker-pm2-nginx/HEAD/nginx/default.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveholgado/nextjs-docker-pm2-nginx/HEAD/package.json -------------------------------------------------------------------------------- /pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveholgado/nextjs-docker-pm2-nginx/HEAD/pages/about.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveholgado/nextjs-docker-pm2-nginx/HEAD/pages/index.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------