Works but cooked
This commit is contained in:
parent
2263558f4a
commit
178338af00
1 changed files with 137 additions and 0 deletions
137
jobs/services/mixpost.hcl
Normal file
137
jobs/services/mixpost.hcl
Normal file
|
@ -0,0 +1,137 @@
|
|||
job "mixpost" {
|
||||
datacenters = ["aperture"]
|
||||
type = "service"
|
||||
|
||||
group "mixpost" {
|
||||
network {
|
||||
port "http" {
|
||||
to = 80
|
||||
}
|
||||
|
||||
port "redis" {
|
||||
to = 6379
|
||||
}
|
||||
|
||||
port "db" {
|
||||
to = 3306
|
||||
}
|
||||
}
|
||||
|
||||
service {
|
||||
name = "mixpost"
|
||||
port = "http"
|
||||
|
||||
tags = [
|
||||
"traefik.enable=true",
|
||||
"traefik.port=${NOMAD_PORT_http}",
|
||||
"traefik.http.routers.mixpost.rule=Host(`mixpost.redbrick.dcu.ie`)",
|
||||
"traefik.http.routers.mixpost.entrypoints=web,websecure",
|
||||
"traefik.http.routers.mixpost.tls.certresolver=lets-encrypt",
|
||||
"traefik.http.routers.mixpost.tls.certresolver=mytlschallenge",
|
||||
"traefik.http.middlewares.mixpost.headers.SSLRedirect=true",
|
||||
"traefik.http.middlewares.mixpost.headers.STSSeconds=315360000",
|
||||
"traefik.http.middlewares.mixpost.headers.browserXSSFilter=true",
|
||||
"traefik.http.middlewares.mixpost.headers.contentTypeNosniff=true",
|
||||
"traefik.http.middlewares.mixpost.headers.forceSTSHeader=true",
|
||||
"traefik.http.middlewares.mixpost.headers.SSLHost=`${APP_DOMAIN}`",
|
||||
"traefik.http.middlewares.mixpost.headers.STSIncludeSubdomains=true",
|
||||
"traefik.http.middlewares.mixpost.headers.STSPreload=true"
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
task "mixpost" {
|
||||
driver = "docker"
|
||||
|
||||
config {
|
||||
image = "inovector/mixpost:latest"
|
||||
ports = ["http"]
|
||||
}
|
||||
|
||||
template {
|
||||
data = <<EOH
|
||||
APP_NAME=MIXPOST
|
||||
|
||||
APP_KEY=base64:DGQ7OyZqSW3Fc1+gOL7jWk7ONEZk2VpPKx22gyO3VnM=
|
||||
APP_DEBUG=true
|
||||
APP_DOMAIN=mixpost.redbrick.dcu.ie
|
||||
APP_URL=https://${APP_DOMAIN}
|
||||
|
||||
DB_HOST={{ env "NOMAD_IP_db" }}
|
||||
DB_PORT={{ env "NOMAD_HOST_PORT_db" }}
|
||||
DB_DATABASE={{ key "mixpost/db/name" }}
|
||||
DB_USERNAME={{ key "mixpost/db/user" }}
|
||||
DB_PASSWORD={{ key "mixpost/db/password" }}
|
||||
EOH
|
||||
destination = "local/.env"
|
||||
env = true
|
||||
}
|
||||
}
|
||||
|
||||
task "mixpost-redis" {
|
||||
driver = "docker"
|
||||
|
||||
config {
|
||||
image = "redis:latest"
|
||||
ports = ["redis"]
|
||||
}
|
||||
|
||||
lifecycle {
|
||||
hook = "prestart"
|
||||
sidecar = "true"
|
||||
}
|
||||
}
|
||||
|
||||
task "mariadb" {
|
||||
driver = "docker"
|
||||
|
||||
template {
|
||||
data = <<EOH
|
||||
MYSQL_ROOT_PASSWORD=password
|
||||
MYSQL_DATABASE={{ key "mixpost/db/name" }}
|
||||
MYSQL_USER={{ key "mixpost/db/user" }}
|
||||
MYSQL_PASSWORD={{ key "mixpost/db/password" }}
|
||||
EOH
|
||||
|
||||
destination = "local/file.env"
|
||||
env = true
|
||||
}
|
||||
|
||||
config {
|
||||
image = "mariadb:latest"
|
||||
ports = ["db"]
|
||||
|
||||
volumes = [
|
||||
"/storage/nomad/mixpost/mysql:/var/lib/mysql",
|
||||
"local/server.cnf:/etc/mysql/mariadb.conf.d/50-server.cnf",
|
||||
]
|
||||
}
|
||||
|
||||
template {
|
||||
data = <<EOH
|
||||
[server]
|
||||
|
||||
[mariadbd]
|
||||
|
||||
pid-file = /run/mysqld/mysqld.pid
|
||||
basedir = /usr
|
||||
|
||||
bind-address = 0.0.0.0
|
||||
|
||||
expire_logs_days = 10
|
||||
|
||||
character-set-server = utf8mb4
|
||||
character-set-collations = utf8mb4=uca1400_ai_ci
|
||||
|
||||
[mariadbd]
|
||||
EOH
|
||||
destination = "local/server.cnf"
|
||||
}
|
||||
|
||||
resources {
|
||||
cpu = 400
|
||||
memory = 800
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue