stash extras
All checks were successful
Garfbot CI/CD Deployment / Deploy (push) Successful in 1m4s

This commit is contained in:
2025-08-28 06:55:01 -05:00
parent 9b519c1fa9
commit 34f34e3def
4 changed files with 0 additions and 0 deletions

39
etc/garfbot.tf Normal file
View File

@@ -0,0 +1,39 @@
provider "docker" {
host = "unix:///var/run/docker.sock"
}
resource "docker_container" "garfbot" {
name = "garfbot"
image = "garfbot"
restart = "always"
volumes {
container_path = "/usr/src/app"
host_path = "/home/crate/garfbot"
}
}
resource "docker_container" "jonbot" {
name = "jonbot"
image = "jonbot"
restart = "always"
volumes {
container_path = "/usr/src/app"
host_path = "/home/crate/garfbot"
}
}
resource "docker_container" "moneybot" {
name = "moneybot"
image = "moneybot"
restart = "always"
volumes {
container_path = "/usr/src/app"
host_path = "/home/crate/garfbot"
}
}