Skip to content

nodejs docker app + mongodb atlas #10

nodejs docker app + mongodb atlas

nodejs docker app + mongodb atlas #10

name: Docker Job
on:
push:
branches:
- job-in-container
jobs:
job-in-container:
runs-on: ubuntu-latest
container:
image: node:18
env:
API_URL: some-url.com
ports:
- 80
steps:
- name: Log image node version
run: |
node -v
cat /etc/os-release
- name: Log env
run: echo $API_URL
- name: Create a file
run: echo "Dummy text" > text.txt
- name: Use a separate container for this step to print content of file created in above step
uses: docker://node:20
with:
entrypoint: cat
args: text.txt