All checks were successful
deploy / deploy (push) Successful in 4s
modified: services/code-server/docker-compose.yaml modified: services/code-server/docker-run.sh
12 lines
177 B
Bash
Executable File
12 lines
177 B
Bash
Executable File
#! /bin/bash
|
|
|
|
scriptPath="$(dirname "$(readlink -f "$0")")"
|
|
currentPath=$PWD
|
|
|
|
cd $scriptPath
|
|
docker compose pull
|
|
docker compose up --force-recreate --build -d
|
|
|
|
cd $currentPath
|
|
|