-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
75 lines (66 loc) · 2.66 KB
/
Rakefile
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
64
65
66
67
68
69
70
71
72
73
74
75
require 'rake'
# --------------------------------------------------------------------------- #
# commands
# --------------------------------------------------------------------------- #
DOCKER = 'docker compose'
# --------------------------------------------------------------------------- #
# default
# --------------------------------------------------------------------------- #
desc "Build without caches and setup docker containers."
task :default => [ :build, :up ]
# --------------------------------------------------------------------------- #
# once
# --------------------------------------------------------------------------- #
desc "Setup server only once."
task :once do
sh('mkdir -p ~/.docker/cli-plugins/')
sh('curl -SL https://github.com/docker/compose/releases/download/v2.27.0/docker-compose-linux-x86_64 -o ~/.docker/cli-plugins/docker-compose')
sh('chmod +x ~/.docker/cli-plugins/docker-compose')
end
# --------------------------------------------------------------------------- #
# up
# --------------------------------------------------------------------------- #
desc "Setup docker containers and execute some init scripts."
task :up do
sh("#{DOCKER} up -d")
Rake::Task[:status].execute
end
# --------------------------------------------------------------------------- #
# down
# --------------------------------------------------------------------------- #
desc "Teardown docker containers."
task :down do
sh("#{DOCKER} down")
end
# --------------------------------------------------------------------------- #
# build
# --------------------------------------------------------------------------- #
desc "Build docker containers."
task :build, [:name] do |_, e|
e.with_defaults(:name => '')
sh("#{DOCKER} build #{e.name}")
end
# --------------------------------------------------------------------------- #
# build_force
# --------------------------------------------------------------------------- #
desc "Build docker containers without caches."
task :build_force, [:name] do |_, e|
e.with_defaults(:name => '')
sh("#{DOCKER} build --no-cache #{e.name}")
end
# --------------------------------------------------------------------------- #
# restart
# --------------------------------------------------------------------------- #
desc "Restart docker containers."
task :restart, [:name] do |_, e|
e.with_defaults(:name => '')
sh("#{DOCKER} restart #{e.name}")
Rake::Task[:status].execute
end
# --------------------------------------------------------------------------- #
# status
# --------------------------------------------------------------------------- #
desc "Show the status of containers."
task :status do
sh("#{DOCKER} ps")
end