mirror of
https://github.com/softwareshinobi/self-hosted-wordpress-server.git
synced 2025-10-03 19:43:18 +08:00
21 lines
143 B
Bash
Executable file
21 lines
143 B
Bash
Executable file
#!/bin/bash
|
|
|
|
##
|
|
|
|
reset
|
|
|
|
clear
|
|
|
|
##
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
##
|
|
|
|
docker compose pull
|
|
|
|
docker compose down --remove-orphans
|
|
|
|
docker compose up --build -d
|