]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/irc/recipes/default.rb
irc: Use container
[chef.git] / cookbooks / irc / recipes / default.rb
index 7fbc7ff743d77754a8f405de5d5fa1d8b936aba8..ef6332dceeaea8c2e2b56201b3a8c42318dbc3c8 100644 (file)
 #
 
 include_recipe "apache"
+include_recipe "podman"
+
+docker_external_port = 8092
+
+podman_service "irc.openstreetmap.org" do
+  description "Container service for irc.openstreetmap.org"
+  image "ghcr.io/openstreetmap/irc:latest"
+  ports docker_external_port => "8080"
+end
 
 ssl_certificate "irc.openstreetmap.org" do
   domains ["irc.openstreetmap.org", "irc.osm.org"]
   notifies :reload, "service[apache2]"
 end
 
-directory "/srv/irc.openstreetmap.org" do
-  owner "root"
-  group "root"
-  mode "755"
-end
-
-remote_directory "/srv/irc.openstreetmap.org/html" do
-  source "html"
-  owner "root"
-  group "root"
-  mode "755"
-  files_owner "root"
-  files_group "root"
-  files_mode "644"
-end
+apache_module "proxy_http"
 
 apache_site "irc.openstreetmap.org" do
   template "apache.erb"
-  directory "/srv/irc.openstreetmap.org/html"
-  variables :aliases => ["irc.osm.org"]
+  variables :docker_external_port => docker_external_port, :aliases => ["irc.osm.org"]
 end