11 lines
215 B
Bash
Executable File
11 lines
215 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#./create.sh
|
|
docker compose down
|
|
docker system prune -a -f
|
|
docker volume prune -a -f
|
|
docker build -t fis .
|
|
#cd /home/tommal/Desktop/maschera/manager-solution
|
|
docker compose up -d
|
|
docker compose logs -f
|