Skip to content

Instantly share code, notes, and snippets.

@ItayPodhajcer
Created March 15, 2023 15:41
Show Gist options
  • Save ItayPodhajcer/85629394470fcb3791837c1ef203a8fe to your computer and use it in GitHub Desktop.
Save ItayPodhajcer/85629394470fcb3791837c1ef203a8fe to your computer and use it in GitHub Desktop.
terraform-azure-mastodon/main.tf#aci-redis
container {
name = "redis"
image = "docker.io/bitnami/redis:7.0"
cpu = "0.5"
memory = "1"
environment_variables = {
"ALLOW_EMPTY_PASSWORD" = "yes"
}
ports {
port = "6379"
protocol = "TCP"
}
volume {
name = "redis-data"
mount_path = "/bitnami/redis"
empty_dir = true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment