Compare commits

...

11 Commits

Author SHA1 Message Date
3wc
bad32dd353 chore: publish 1.3.2+1.23.3 release 2023-03-28 11:39:16 -04:00
3wc
f25c45c5c6 Change category to "Development"
[ci skip]
2023-03-28 11:37:29 -04:00
3wc
bb9945b38d Switch to self-hosted stack-ssh-deploy image [mass update] 2023-01-21 11:49:55 -08:00
3wc
c50f5397bf Update abra syntax in examples (finally) [mass update] 2023-01-19 16:02:27 -08:00
3wc
2a3021744d Further Drone fix 2023-01-19 15:53:48 -08:00
3wc
a68a31b45c chore: publish 1.3.1+1.23.3 release 2023-01-19 15:52:35 -08:00
3wc
977a81d493 Fix Drone, switch to new catalogue generation..
..and add Drone badge
2023-01-19 15:50:43 -08:00
3wc
ba0f1986a0 Add backupbot backups 2023-01-19 15:49:13 -08:00
3wc
02d0a39db4 chore: publish 1.3.0+1.23.3 release 2023-01-18 13:23:37 -08:00
3wc
c7d557cc6c Remove more VIM swapfiles 2022-10-26 15:09:21 -04:00
3wc
c8ffbe96fe Remove accidental vim swapfile 2022-06-14 10:21:14 +01:00
8 changed files with 26 additions and 12 deletions

Binary file not shown.

Binary file not shown.

View File

@ -3,27 +3,37 @@ kind: pipeline
name: deploy to swarm-test.autonomic.zone name: deploy to swarm-test.autonomic.zone
steps: steps:
- name: deployment - name: deployment
image: decentral1se/stack-ssh-deploy:latest image: git.coopcloud.tech/coop-cloud/stack-ssh-deploy:latest
settings: settings:
host: swarm-test.autonomic.zone host: swarm-test.autonomic.zone
stack: custom_html stack: custom_html
purge: true purge: true
networks:
- proxy
deploy_key: deploy_key:
from_secret: drone_ssh_swarm_test from_secret: drone_ssh_swarm_test
environment: environment:
DOMAIN: custom-html.swarm-test.autonomic.zone DOMAIN: custom-html.swarm-test.autonomic.zone
STACK_NAME: custom_html STACK_NAME: custom_html
LETS_ENCRYPT_ENV: production LETS_ENCRYPT_ENV: production
NGINX_DEFAULT_CONF_VERSION: v1
ENTRYPOINT_CONF_VERSION: v1
trigger: trigger:
branch: branch:
- main - main
--- ---
kind: pipeline kind: pipeline
name: recipe release name: generate recipe catalogue
steps: steps:
- name: release a new version - name: release a new version
image: thecoopcloud/drone-abra:latest image: plugins/downstream
settings: settings:
command: recipe custom-html release server: https://build.coopcloud.tech
deploy_key: token:
from_secret: abra_bot_deploy_key from_secret: drone_abra-bot_token
fork: true
repositories:
- coop-cloud/auto-recipes-catalogue-json
trigger:
event: tag

Binary file not shown.

Binary file not shown.

View File

@ -1,9 +1,11 @@
# Custom HTML # Custom HTML
[![Build Status](https://build.coopcloud.tech/api/badges/coop-cloud/custom-html/status.svg)](https://build.coopcloud.tech/coop-cloud/custom-html)
Custom HTML website, served using Nginx. Custom HTML website, served using Nginx.
<!-- metadata --> <!-- metadata -->
* **Category**: Apps * **Category**: Development
* **Status**: 2, beta * **Status**: 2, beta
* **Image**: [`nginx`](https://hub.docker.com/_/nginx), 4, upstream * **Image**: [`nginx`](https://hub.docker.com/_/nginx), 4, upstream
* **Healthcheck**: No * **Healthcheck**: No
@ -18,9 +20,9 @@ Custom HTML website, served using Nginx.
1. Set up Docker Swarm and [`abra`] 1. Set up Docker Swarm and [`abra`]
2. Deploy [`coop-cloud/traefik`] 2. Deploy [`coop-cloud/traefik`]
3. `abra app new custom-html` 3. `abra app new custom-html`
4. `abra app YOURAPPDOMAIN config` - be sure to change `$DOMAIN` to something that resolves to 4. `abra app config YOURAPPDOMAIN` - be sure to change `$DOMAIN` to something that resolves to
your Docker swarm box your Docker swarm box
5. `abra app YOURAPPDOMAIN deploy` 5. `abra app deploy YOURAPPDOMAIN`
6. Copy your files to the container, using something like 6. Copy your files to the container, using something like
``` ```
abra app YOURAPPDOMAIN cp index.html app:/usr/share/nginx/html abra app YOURAPPDOMAIN cp index.html app:/usr/share/nginx/html

View File

@ -3,7 +3,7 @@ services:
git: git:
environment: environment:
- GIT_REPO_URL - GIT_REPO_URL
image: alpine/git:v2.32.0 image: alpine/git:v2.36.3
entrypoint: /docker-entrypoint.sh entrypoint: /docker-entrypoint.sh
volumes: volumes:
- content:/git - content:/git

View File

@ -3,7 +3,7 @@ version: "3.8"
services: services:
app: app:
image: nginx:1.21.6 image: nginx:1.23.3
networks: networks:
- proxy - proxy
deploy: deploy:
@ -19,7 +19,9 @@ services:
- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect" - "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true" - "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}" - "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
- "coop-cloud.${STACK_NAME}.version=1.2.1+1.21.6" - "coop-cloud.${STACK_NAME}.version=1.3.2+1.23.3"
- "backupbot.backup=true"
- "backupbot.backup.path=/usr/share/nginx/html"
environment: environment:
DEFAULT_CONF_FILE: /etc/nginx/conf.d/default.conf DEFAULT_CONF_FILE: /etc/nginx/conf.d/default.conf
volumes: volumes: