13 lines
145 B
Bash
13 lines
145 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd /overleaf
|
|
git pull
|
|
|
|
cd server-ce
|
|
make build-base
|
|
make build-community
|
|
|
|
cd /services/overleaf
|
|
docker compose up -d --build |