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