We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42ec873 commit 474bf32Copy full SHA for 474bf32
1 file changed
.github/workflows/docker_test1.yml
@@ -0,0 +1,12 @@
1
+name: Dockerized NodeJs App
2
+on: push
3
+
4
+jobs:
5
+ docker-steps:
6
+ # Docker containers can only run on ubuntu, it cannot run on Mac or Windows.
7
+ runs-on: ubuntu-latest
8
+ container:
9
+ image: docker://10.2-devel-ubuntu16.04
10
+ steps:
11
+ - name: Log running docker containers
12
+ run: docker -ps
0 commit comments