mirror of
https://github.com/pockethost/pockethost.git
synced 2025-03-30 15:08:30 +00:00
10 lines
118 B
Bash
Executable File
10 lines
118 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -a
|
|
source .env
|
|
set +a
|
|
|
|
pm2 stop all
|
|
docker kill $(docker ps -q)
|
|
docker rm $(docker ps -a -q)
|
|
yarn dev |