Attempt to wire up the deploy
continuous-integration/drone/push Build is failing Details

This commit is contained in:
decentral1se 2021-06-05 08:33:52 +02:00
parent 8e8b03ec6d
commit 756dc87a05
Signed by: decentral1se
GPG Key ID: 92DAD76BD9567B8A
3 changed files with 60 additions and 0 deletions

View File

@ -9,6 +9,15 @@ steps:
- ssh-keyscan -p 2222 git.autonomic.zone > "/root/.ssh/known_hosts"
- /root/.local/bin/app-json.py
- name: deployment
image: decentral1se/stack-ssh-deploy:latest
settings:
host: swarm.autonomic.zone
stack: coop_cloud_apps_json
deploy_key:
from_secret: drone_ssh_swarm_test
rm: true
# - name: notify on failure
# image: plugins/matrix
# settings:

41
compose.yml Normal file
View File

@ -0,0 +1,41 @@
---
version: "3.8"
services:
app:
image: "nginx:stable"
configs:
- source: abra_conf
target: /etc/nginx/conf.d/abra.conf
- source: abra_apps_json
target: /var/www/abra-apps/apps.json
volumes:
- "public:/var/www/abra-apps"
networks:
- proxy
deploy:
update_config:
failure_action: rollback
order: start-first
labels:
- "traefik.enable=true"
- "traefik.http.services.abra-apps.loadbalancer.server.port=80"
- "traefik.http.routers.abra-apps.rule=Host(`apps.coopcloud.tech`, `abra-apps.cloud.autonomic.zone`)"
- "traefik.http.routers.abra-apps.entrypoints=web-secure"
- "traefik.http.routers.abra-apps.tls.certresolver=production"
- "traefik.http.routers.abra-apps.middlewares=abra-apps-redirect"
- "traefik.http.middlewares.abra-apps-redirect.headers.SSLForceHost=true"
- "traefik.http.middlewares.abra-apps-redirect.headers.SSLHost=apps.coopcloud.tech"
configs:
abra_apps_json:
file: apps.json
abra_conf:
file: nginx.conf
networks:
proxy:
external: true
volumes:
public:

10
nginx.conf Normal file
View File

@ -0,0 +1,10 @@
server {
listen 80 default_server;
server_name apps.coopcloud.tech;
location / {
root /var/www/abra-apps;
add_header Content-Type application/json;
index apps.json;
}
}