ci(github): add github action to redeploy latest version after docker image ci

This commit is contained in:
Amruth Pillai 2022-03-08 11:50:59 +01:00
parent 43ce43ab5b
commit 2e288a5407
No known key found for this signature in database
GPG Key ID: E3C57DF9B80855AD
4 changed files with 59 additions and 23 deletions

View File

@ -0,0 +1,21 @@
name: Deploy Latest Version on DigitalOcean
on:
workflow_run:
workflows:
- Build and Push Docker Image
types:
- completed
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Install DigitalOcean CLI
uses: digitalocean/action-doctl@v2.1.0
with:
token: ${{ secrets.DIGITALOCEAN_TOKEN }}
- name: Create Deployment with Latest Version
run: doctl apps create-deployment ${{ secrets.DIGITALOCEAN_APP_ID }} --wait --force-rebuild

View File

@ -3,7 +3,7 @@ name: Build and Push Docker Image
on:
push:
branches:
- 'v3'
- v3
jobs:
docker_client:

View File

@ -1,10 +1,22 @@
version: '3'
services:
postgres:
image: postgres
container_name: postgres
ports:
- 5432:5432
env_file: .env
volumes:
- ./scripts/database/initialize.sql:/docker-entrypoint-initdb.d/initialize.sql
- pgdata:/var/lib/postgresql/data
server:
image: amruthpillai/reactive-resume:server-latest
container_name: server
env_file: .env
environment:
- POSTGRES_HOST=postgres
ports:
- 3100:3100
@ -16,3 +28,6 @@ services:
- 3000:3000
depends_on:
- server
volumes:
pgdata:

View File

@ -11,29 +11,29 @@ services:
- ./scripts/database/initialize.sql:/docker-entrypoint-initdb.d/initialize.sql
- pgdata:/var/lib/postgresql/data
# server:
# build:
# context: .
# dockerfile: server/Dockerfile
# container_name: server
# env_file: .env
# environment:
# - POSTGRES_HOST=postgres
# ports:
# - 3100:3100
# depends_on:
# - postgres
server:
build:
context: .
dockerfile: server/Dockerfile
container_name: server
env_file: .env
environment:
- POSTGRES_HOST=postgres
ports:
- 3100:3100
depends_on:
- postgres
# client:
# build:
# context: .
# dockerfile: client/Dockerfile
# container_name: client
# env_file: .env
# ports:
# - 3000:3000
# depends_on:
# - server
client:
build:
context: .
dockerfile: client/Dockerfile
container_name: client
env_file: .env
ports:
- 3000:3000
depends_on:
- server
volumes:
pgdata: