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