I am not going to explain how to setup an node api here. You can find that in 20.15 Basic Node website.
You need to only really add a few files to your 20.08 node js api:
docker-compose.yml - optional, but reccomended
Dockerfile
.github/workflows/release.yml
.dockerignore
.dockerignore
.dockerignore should be the same as .gitignore, but at least put the following:
.dockerignore
This file doesn’t have a file extention, and must be in your root folder.
Dockerfile
Dockerfile also doesnt have a file extension, and must also be in the root folder.
It should include the following:
# Specify a base imageFROM node:alpine#Install some dependenciesWORKDIR /usr/appCOPY ./ /usr/appRUN npm installEXPOSE 3001# Set up a default commandCMD [ "npm","start" ]
What it does is expose a port (so it can be used), npm install, and start the application.
npm run start
This is the command that get’s run, this works because I have configured this command in my package.json:
Replace the image url with your own. You can find it under the packages in your github repo, for example: mine
release.yml
.github/workflows/release.yml should be in the workflows folder, which is inside the .github folder.
The contents are too large to just paste here, so copy it from here
Adding a container.
Info
This part will assume you followed the above steps with the node container or use the default example.
On your Portainer, navigate to the containers page and create a new one with the add container button.
Here you got to choose a name, spaces and special characters are not allowed, dashes are.
In the Image field, we are going to put the following: ghcr.io/<your_github_name>/<repo_name>):main
scroll down to Port mapping and click the button map additional port. here you can select which ports to run it on. By putting a port here manually, you’ll overwrite the docker-compose.yml.
now go to http://<your_IP>:<port>
update a portainer container
In a stack you have to:
open the stack
editor tab >
update the stack button
Re-pull image and redeploy toggle
on a container you have to open it and click recreate and select Re-pull image