Skip to content

Commit c8a9c18

Browse files
committed
unified Docker scripts
1 parent 8d62360 commit c8a9c18

9 files changed

Lines changed: 27 additions & 35 deletions

Docker/list_Docker_containers.bash

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#! /bin/bash
2+
docker ps -a

Docker/onContainer_1-install_system_packages.bash

Lines changed: 0 additions & 13 deletions
This file was deleted.

Docker/onContainer_2-install_R_packages.bash

Lines changed: 0 additions & 10 deletions
This file was deleted.

Docker/onContainer_3-compile.bash

Lines changed: 0 additions & 8 deletions
This file was deleted.
File renamed without changes.

Docker/push_to_DockerHub.bash

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#! bin/bash
2+
3+
#_______________________________________________________________________________
4+
## push 'latest'-tagged image
5+
6+
## login to Docker
7+
docker login
8+
9+
## tag image
10+
docker tag popscomp:latest jkleinj150999/popscomp:latest
11+
12+
## push image
13+
docker push jkleinj150999/popscomp:latest
14+
15+
## verify
16+
docker images
17+
18+
19+
#_______________________________________________________________________________
20+
## push 'version'-tag
21+
docker tag popscomp:latest jkleinj150999/popscomp:v3.4
22+
docker push jkleinj150999/popscomp:v3.4
23+
24+
#===============================================================================
25+
File renamed without changes.

Docker/tag_push_Docker_image.bash

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)