Skip to content

Commit

Permalink
Update .bashrc-syno
Browse files Browse the repository at this point in the history
update to align with ubuntu version
  • Loading branch information
petersem authored Nov 25, 2024
1 parent 8f015bb commit abb1022
Showing 1 changed file with 24 additions and 50 deletions.
74 changes: 24 additions & 50 deletions .bashrc-syno
Original file line number Diff line number Diff line change
@@ -1,70 +1,46 @@
# nano ~/.bashrc
# run 'source ~/.bashrc' to load latest changes in current session

# ALIASES #####################################################
# Note that these aliases do not work on Synology docker, due to the fact that they are a number of versions behind. (change "docker compose" to "docker-compose" and then it should work)


########## Set docker aliases
# Synology version
##################################################################

# basic change folder command
alias cdkr='cd /volume1/docker'
# run 'source ~/.bashrc' to load latest changes in current session

# list all containers in a formatted list
alias list='docker ps -a --format "table {{.Names}}\t{{.ID}}\t{{.Image}}\t{{.Status}}" | (read -r; printf "%s\n" "$REPLY"; sort -k 1 )'
# ALIASES ########################################################
# Note that these aliases are for Synology docker

# stop and remove all containers in your compose file. Optional to add a single container name
# Set docker aliases
alias dive='docker run -ti --rm -v /var/run/docker.sock:/var/run/docker.sock wagoodman/dive'
alias cdkr='cd ~/docker'
alias cdcd='cd ~/code/dockerholics/compose-examples'
alias list='docker ps -a --format "table {{.Names}}\t{{.ID}}\t{{.Status}}" | (read -r; printf "%s\n" "$REPLY"; sort -k >
alias down='docker-compose down -v'

# pull latest images in your compose file. Optional to add a single container name
alias pull='docker-compose pull'

# start all containers in your compose file. Optional to add a single container name
alias up='docker-compose up -d'

# inspect the details for a given container
alias inspect='docker inspect'

# create, but dont start, all containers in your compose file. Optional to add a single container name
alias create='docker-compose up --no-start'

# stop a specific container
alias stop='docker stop'

# stop all containers
alias stopall='docker stop $(docker ps -a -q)'

# start all containers
alias startall='docker start $(docker ps -a -q)'

# start a specific container
alias stopall='docker stop $(docker ps -a -q)'
alias start='docker start'

# Remove all images and volumes that are not in use. *including stopped containers*
alias prune='docker system prune -a --volumes'

# delete a stopped container
alias del='docker rm'

# restart a container
alias cycle='docker restart'

# show the logs for a specific container
alias logs='docker logs -f'

# show host disk use for docker
alias ddf='docker system df'

# rename a specified container
alias rename='docker rename'
# Set other aliases
alias ver='cat /etc/os-release && uname -mrs && docker -v && docker compose version'
alias topsize='sudo du -Sha | sort -rh | head -n 10'



# FUNCTIONS ####################################################
#

# run a command inside a given container. Pass a single command or encapsulate in "" for a command with a parameter
# run a command inside a given container
drun() {
docker exec $1
docker exec $1 $2
}

# Restarts a container
#
cycle() {
docker restart $1
}

# pulls a image and then creates and starts it
Expand Down Expand Up @@ -98,10 +74,8 @@ piu() {
sudo netstat -plan | grep ":$1"
}



# ENVIRONMENT SETTINGS ##########################################
#
# Helps avoid timeouts for large yaml scripts

export DOCKER_CLIENT_TIMEOUT=360
export COMPOSE_HTTP_TIMEOUT=360

0 comments on commit abb1022

Please sign in to comment.