-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathcontainer-init.sh
More file actions
executable file
·29 lines (28 loc) · 997 Bytes
/
container-init.sh
File metadata and controls
executable file
·29 lines (28 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash
cat << 'EOF'
______ ______
/ ____/(_)_______ / ____/___ _________ ___
/ /_ / // ___/ _ \ / /_ / __ \/ ___/ __ `__ \
/ __/ / // / / __/ / __/ / /_/ / / / / / / / /
/_/ /_//_/ \___/ /_/ \____/_/ /_/ /_/ /_/
EOF
echo "Make sure to have docker installed"
echo "Building containers..."
echo "============================================"
make build
echo "============================================"
echo "Starting containers..."
echo "============================================"
make up
echo "============================================"
echo "Use make down to stop"
echo "Use docker ps to verify, you should see 2 containers:"
echo "\t* fireform-app"
echo "\t* ollama/ollama:latest"
docker ps
echo "============================================"
echo "Pulling mistral from ollama"
echo "============================================"
make pull-model
echo "============================================"
echo "Done"