10 lines
128 B
Bash
10 lines
128 B
Bash
#!/bin/bash
|
|
|
|
# Update the project
|
|
git pull
|
|
|
|
# Build the project
|
|
docker compose build
|
|
|
|
# Restart the project
|
|
docker compose up -d |