10 lines
198 B
Bash
10 lines
198 B
Bash
#!/bin/bash
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install docker.io docker-compose nginx certbot python3-certbot-nginx -y
|
|
|
|
sudo systemctl enable docker
|
|
sudo systemctl start docker
|
|
|
|
docker-compose up -d --build |