Compare commits
2 Commits
cb44eb1fab
...
6bf7afbe09
| Author | SHA1 | Date | |
|---|---|---|---|
|
6bf7afbe09
|
|||
|
5c94dbbff5
|
155
.drone.yml
155
.drone.yml
@@ -79,19 +79,27 @@ steps:
|
|||||||
- yarn install
|
- yarn install
|
||||||
- yarn build
|
- yarn build
|
||||||
- name: Publish NPM
|
- name: Publish NPM
|
||||||
image: plugins/npm
|
image: node:latest
|
||||||
failure: ignore
|
failure: ignore
|
||||||
settings:
|
commands:
|
||||||
username:
|
- yarn npm publish
|
||||||
from_secret: registry_username
|
|
||||||
password:
|
|
||||||
from_secret: registry_password
|
|
||||||
registry: https://git.mifi.dev/api/packages/mifi/npm
|
|
||||||
token:
|
|
||||||
- from_secret: gitea_token
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: npmrc
|
- name: npmrc
|
||||||
path: /drone/grow/.npmrc
|
path: /drone/grow/.npmrc
|
||||||
|
# - name: Publish NPM
|
||||||
|
# image: plugins/npm
|
||||||
|
# failure: ignore
|
||||||
|
# settings:
|
||||||
|
# username:
|
||||||
|
# from_secret: registry_username
|
||||||
|
# password:
|
||||||
|
# from_secret: registry_password
|
||||||
|
# registry: https://git.mifi.dev/api/packages/mifi/npm
|
||||||
|
# token:
|
||||||
|
# - from_secret: gitea_token
|
||||||
|
# volumes:
|
||||||
|
# - name: npmrc
|
||||||
|
# path: /drone/grow/.npmrc
|
||||||
- name: Report NPM Publish Status
|
- name: Report NPM Publish Status
|
||||||
image: plugins/webhook
|
image: plugins/webhook
|
||||||
settings:
|
settings:
|
||||||
@@ -109,13 +117,8 @@ steps:
|
|||||||
- failure
|
- failure
|
||||||
- name: Publish Image
|
- name: Publish Image
|
||||||
image: docker
|
image: docker
|
||||||
environemnt:
|
|
||||||
USERNAME:
|
|
||||||
from_secret: registry_username
|
|
||||||
PASSWORD:
|
|
||||||
from_secret: registry_password
|
|
||||||
commands:
|
commands:
|
||||||
- 'docker login git.mifi.dev'
|
# - 'docker login git.mifi.dev'
|
||||||
- 'docker build -t git.mifi.dev/mifi/mifi/auth:latest -t git.mifi.dev/mifi/mifi/auth:${DRONE_TAG} .'
|
- 'docker build -t git.mifi.dev/mifi/mifi/auth:latest -t git.mifi.dev/mifi/mifi/auth:${DRONE_TAG} .'
|
||||||
- docker push git.mifi.dev/mifi/mifi/auth:latest
|
- docker push git.mifi.dev/mifi/mifi/auth:latest
|
||||||
volumes:
|
volumes:
|
||||||
@@ -160,69 +163,69 @@ trigger:
|
|||||||
- push
|
- push
|
||||||
# - tag
|
# - tag
|
||||||
|
|
||||||
# ---
|
---
|
||||||
# kind: pipeline
|
kind: pipeline
|
||||||
# type: docker
|
type: docker
|
||||||
# name: Deploy Pipeline
|
name: Deploy Pipeline
|
||||||
|
|
||||||
# workspace:
|
workspace:
|
||||||
# path: /drone/grow
|
path: /drone/grow
|
||||||
|
|
||||||
# steps:
|
steps:
|
||||||
# - name: Deploy Container
|
- name: Deploy Container
|
||||||
# image: docker
|
image: docker
|
||||||
# privileged: true
|
privileged: true
|
||||||
# environment:
|
environment:
|
||||||
# CONTAINER_PREFIX: staging
|
CONTAINER_PREFIX: staging
|
||||||
# HOST: area51.mifi.dev
|
HOST: area51.mifi.dev
|
||||||
# ROUTE_PREFIX: /auth
|
ROUTE_PREFIX: /auth
|
||||||
# PORT: 9001
|
PORT: 9001
|
||||||
# commands:
|
commands:
|
||||||
# - docker compose -f docker-compose.staging.yml pull
|
- docker compose -f docker-compose.staging.yml pull
|
||||||
# - docker compose -f docker-compose.staging.yml build --no-cache
|
- docker compose -f docker-compose.staging.yml build --no-cache
|
||||||
# - docker compose -f docker-compose.staging.yml rm --stop
|
- docker compose -f docker-compose.staging.yml rm --stop
|
||||||
# - docker compose -f docker-compose.staging.yml up --wait
|
- docker compose -f docker-compose.staging.yml up --wait
|
||||||
# volumes:
|
volumes:
|
||||||
# - name: env-secrets
|
- name: env-secrets
|
||||||
# path: /drone/grow/staging.env
|
path: /drone/grow/staging.env
|
||||||
# - name: dockersock
|
- name: dockersock
|
||||||
# path: /var/run/docker.sock
|
path: /var/run/docker.sock
|
||||||
# - name: dockerconfig
|
- name: dockerconfig
|
||||||
# path: /drone/grow/.docker/config.json
|
path: /drone/grow/.docker/config.json
|
||||||
# - name: Send Status Notifications
|
- name: Send Status Notifications
|
||||||
# image: plugins/webhook
|
image: plugins/webhook
|
||||||
# privileged: true
|
privileged: true
|
||||||
# settings:
|
settings:
|
||||||
# urls: https://lab.mifi.dev/hooks/ccw34hdf7tgbjmzp96nptn938r
|
urls: https://lab.mifi.dev/hooks/ccw34hdf7tgbjmzp96nptn938r
|
||||||
# content_type: application/json
|
content_type: application/json
|
||||||
# template: |
|
template: |
|
||||||
# {
|
{
|
||||||
# "icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
"icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
||||||
# "text": "[{{ repo.name }} - Build # {{ build.number }}] Deploy {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
"text": "[{{ repo.name }} - Build # {{ build.number }}] Deploy {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
||||||
# "username":"DroneBot"
|
"username":"DroneBot"
|
||||||
# }
|
}
|
||||||
# when:
|
when:
|
||||||
# status:
|
status:
|
||||||
# - success
|
- success
|
||||||
# - failure
|
- failure
|
||||||
|
|
||||||
# volumes:
|
volumes:
|
||||||
# - name: dockerconfig
|
- name: dockerconfig
|
||||||
# host:
|
host:
|
||||||
# path: /volume1/docker/dockerconfig.json
|
path: /volume1/docker/dockerconfig.json
|
||||||
# - name: dockersock
|
- name: dockersock
|
||||||
# host:
|
host:
|
||||||
# path: /var/run/docker.sock
|
path: /var/run/docker.sock
|
||||||
# - name: env-secrets
|
- name: env-secrets
|
||||||
# host:
|
host:
|
||||||
# path: /volume1/docker/beethoven/labs-auth/staging.env
|
path: /volume1/docker/beethoven/labs-auth/staging.env
|
||||||
|
|
||||||
# # depends_on:
|
# depends_on:
|
||||||
# # - Test Pipeline
|
# - Test Pipeline
|
||||||
|
|
||||||
# trigger:
|
trigger:
|
||||||
# branch:
|
branch:
|
||||||
# - main
|
- main
|
||||||
# event:
|
event:
|
||||||
# - push
|
- push
|
||||||
# # - tag
|
# - tag
|
||||||
|
|||||||
@@ -16,6 +16,8 @@ services:
|
|||||||
- staging.env
|
- staging.env
|
||||||
build: .
|
build: .
|
||||||
container_name: ${CONTAINER_PREFIX}-auth-service
|
container_name: ${CONTAINER_PREFIX}-auth-service
|
||||||
|
environment:
|
||||||
|
- DB_HOST=${CONTAINER_PREFIX:-mifi}-auth-service_mongo
|
||||||
labels:
|
labels:
|
||||||
- 'traefik.enable=true'
|
- 'traefik.enable=true'
|
||||||
- 'traefik.http.routers.grow.rule=Host(`${HOST}`) && Path(`${ROUTE_PREFIX}`)'
|
- 'traefik.http.routers.grow.rule=Host(`${HOST}`) && Path(`${ROUTE_PREFIX}`)'
|
||||||
|
|||||||
Reference in New Issue
Block a user