Compare commits

...

6 Commits

Author SHA1 Message Date
Fraasi
c02ec211ce Merge 0a8efa0454 into 10872e02d1 2024-06-20 02:46:11 +00:00
Julien Le Coupanec
10872e02d1 Merge pull request #385 from WPRobson/master
add docker init command to docker cheatsheet
2024-06-07 23:35:19 +02:00
Julien Le Coupanec
365b4f72b7 Merge pull request #390 from MagedMohamedTurk/patch-1
Update C.txt
2024-06-07 23:34:57 +02:00
Maged Turkoman
0f74ebe37b Update C.txt 2024-06-01 09:07:47 +03:00
Will Robson
bf4c0379f2 add docker init command to docker cheatsheet 2024-05-12 20:01:26 +01:00
Fraasi
0a8efa0454 Update bash.sh: removed line containing vim command 2024-03-14 15:14:17 +00:00
3 changed files with 2 additions and 2 deletions

View File

@@ -149,6 +149,7 @@ Operators
^= bitwise exclusive or and store ^= bitwise exclusive or and store
|= bitwise or and store |= bitwise or and store
, separator as in ( y=x,z=++x ) , separator as in ( y=x,z=++x )
; statement terminator.
Operator precedence Operator precedence

View File

@@ -55,7 +55,6 @@ history # shows command line history
!! # repeats the last command !! # repeats the last command
!<n> # refers to command line 'n' !<n> # refers to command line 'n'
!<string> # refers to command starting with 'string' !<string> # refers to command starting with 'string'
esc :wq # exits and saves script
exit # logs out of current session exit # logs out of current session

View File

@@ -2,7 +2,7 @@
# DOCKER # DOCKER
############################################################################## ##############################################################################
docker init # Creates Docker-related starter files
docker build -t friendlyname . # Create image using this directory's Dockerfile docker build -t friendlyname . # Create image using this directory's Dockerfile
docker run -p 4000:80 friendlyname # Run "friendlyname" mapping port 4000 to 80 docker run -p 4000:80 friendlyname # Run "friendlyname" mapping port 4000 to 80
docker run -d -p 4000:80 friendlyname # Same thing, but in detached mode docker run -d -p 4000:80 friendlyname # Same thing, but in detached mode