Try nextcloud but fail because of permissions on .db file

This commit is contained in:
Alex 2022-01-19 18:03:31 +01:00
parent 60f1615a12
commit 4836bdd4b2
No known key found for this signature in database
GPG key ID: EDABF9711E244EB1
6 changed files with 139 additions and 0 deletions

View file

@ -0,0 +1,10 @@
dbs:
- path: /ephemeral/nextcloud.db
replicas:
- url: s3://nextcloud-db/nextcloud.db
region: garage-staging
endpoint: http://{{ env "attr.unique.network.ip-address" }}:3990
access-key-id: {{ key "secrets/nextcloud/s3_access_key" | trimSpace }}
secret-access-key: {{ key "secrets/nextcloud/s3_secret_key" | trimSpace }}
force-path-style: true
sync-interval: 60s

View file

@ -0,0 +1,125 @@
job "nextcloud" {
datacenters = ["neptune"]
type = "service"
group "nextcloud" {
count = 1
network {
port "http" {
to = 80
}
}
ephemeral_disk {
size = 10000
}
restart {
attempts = 10
delay = "30s"
}
task "restore-db" {
lifecycle {
hook = "prestart"
sidecar = false
}
driver = "docker"
config {
image = "litestream/litestream:0.3.7"
args = [
"restore", "-config", "/etc/litestream.yml", "/ephemeral/nextcloud.db"
]
volumes = [
"../alloc/data:/ephemeral",
"secrets/litestream.yml:/etc/litestream.yml"
]
}
template {
data = file("../config/litestream.yml")
destination = "secrets/litestream.yml"
}
resources {
memory = 200
cpu = 1000
}
}
task "nextcloud" {
driver = "docker"
config {
image = "nextcloud:22.2.3-apache"
ports = [ "http" ]
volumes = [
"../alloc/data:/ephemeral",
]
}
template {
data = <<EOH
SQLITE_DATABASE=/ephemeral/nextcloud.db
NEXTCLOUD_ADMIN_USER={{ key "secrets/nextcloud/admin_user" }}
NEXTCLOUD_ADMIN_PASSWORD={{ key "secrets/nextcloud/admin_pass" }}
NEXTCLOUD_TRUSTED_DOMAINS=cloud.home.adnab.me
OBJECTSTORE_S3_HOST={{ env "node.unique.network.ip-address" }}
OBJECTSTORE_S3_PORT=3990
OBJECTSTORE_S3_BUCKET=nextcloud-data
OBJECTSTORE_S3_KEY={{ key "secrets/nextcloud/s3_access_key" }}
OBJECTSTORE_S3_SECRET={{ key "secrets/nextcloud/s3_secret_key" }}
OBJECTSTORE_S3_SSL=false
OBJECTSTORE_S3_REGION=garage-staging
OBJECTSTORE_S3_USEPATH_STYLE=true
EOH
destination = "secrets/env"
env = true
}
resources {
memory = 2500
cpu = 1000
}
service {
port = "http"
tags = [
"tricot cloud.home.adnab.me 100",
]
check {
type = "http"
path = "/"
interval = "10s"
timeout = "2s"
}
}
}
task "replicate-db" {
driver = "docker"
config {
image = "litestream/litestream:0.3.7"
args = [
"replicate", "-config", "/etc/litestream.yml"
]
volumes = [
"../alloc/data:/ephemeral",
"secrets/litestream.yml:/etc/litestream.yml"
]
}
template {
data = file("../config/litestream.yml")
destination = "secrets/litestream.yml"
}
resources {
memory = 200
cpu = 100
}
}
}
}

View file

@ -0,0 +1 @@
CMD_ONCE openssl rand -base64 9

View file

@ -0,0 +1 @@
USER Username for administrator account

View file

@ -0,0 +1 @@
USER S3 access key ID for database storage

View file

@ -0,0 +1 @@
USER S3 secret key for database storage