-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTaskfile.yml
More file actions
63 lines (52 loc) · 1.27 KB
/
Copy pathTaskfile.yml
File metadata and controls
63 lines (52 loc) · 1.27 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
version: '3'
tasks:
default:
desc: List available tasks
cmds:
- task --list
silent: true
check-docker:
internal: true
cmds:
- docker info > /dev/null 2>&1 || (echo "❌ Docker is not running. Start Docker Desktop and try again." && exit 1)
start:
desc: Retrieve auth key from 1Password and start the container
deps: [check-docker]
cmds:
- ./start.sh
debug:
desc: Start with verbose logging
deps: [check-docker]
cmds:
- DEBUG=true ./start.sh
stop:
desc: Stop and remove the container
deps: [check-docker]
cmds:
- docker-compose down
restart:
desc: Stop and restart the container
cmds:
- task: stop
- task: start
build:
desc: Rebuild the Docker image from scratch
deps: [check-docker]
cmds:
- docker-compose build --no-cache
logs:
desc: Stream container logs
cmds:
- docker-compose logs -f
status:
desc: Check running container processes
cmds:
- ./check-status.sh
test-auth:
desc: Validate 1Password CLI setup and auth key retrieval
cmds:
- ./test-auth-key.sh
tailscale-status:
desc: Show Tailscale connection status inside the container
cmds:
- docker-compose exec foxtail tailscale status