2021-08-03 18:03:30 +02:00
|
|
|
# This is the workflow for testing cc-docker startup in demo mode
|
|
|
|
# This will be automatic on specified event, but is set to manual while experimenting with workflows
|
|
|
|
|
|
|
|
name: ccdocker-demo-startup
|
|
|
|
|
|
|
|
# Controls when the action will run. Workflow runs when manually triggered using the UI
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
# This workflow contains a single job
|
|
|
|
demo-startup:
|
|
|
|
# The type of runner that the job will run on
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
# Set timeout
|
|
|
|
timeout-minutes: 10
|
|
|
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
|
|
|
steps:
|
|
|
|
# Runs a single command using the runners shell
|
|
|
|
- name: Checkout latest cc-docker
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Build containers
|
2021-08-03 18:22:39 +02:00
|
|
|
run: docker-compose -f "docker-compose.yml" build
|
2021-08-03 18:03:30 +02:00
|
|
|
|
|
|
|
- name: Run containers
|
2021-08-03 18:32:50 +02:00
|
|
|
run: docker-compose -f "docker-compose.yml" up -d
|
2021-08-03 18:03:30 +02:00
|
|
|
|
2021-08-04 10:47:55 +02:00
|
|
|
- name: Giving containers 10s to load
|
|
|
|
run: sleep 10s
|
|
|
|
|
2021-08-03 18:03:30 +02:00
|
|
|
- name: Show containers
|
|
|
|
run: docker ps -a
|
|
|
|
|
2021-08-04 10:47:55 +02:00
|
|
|
- name: Get log from cc-nginx
|
|
|
|
run: docker logs cc-nginx
|
|
|
|
|
|
|
|
- name: Get log from cc-php
|
|
|
|
run: docker logs cc-php
|
|
|
|
|
|
|
|
- name: Get log from cc-influxdb
|
|
|
|
run: docker logs cc-influxdb | tail
|
|
|
|
|
|
|
|
- name: Get log from cc-db
|
|
|
|
run: docker logs cc-db
|
2021-08-03 18:03:30 +02:00
|
|
|
|
2021-08-04 10:47:55 +02:00
|
|
|
- name: Get log from cc-redis
|
|
|
|
run: docker logs cc-redis
|
2021-08-03 18:03:30 +02:00
|
|
|
|
2021-08-04 10:53:01 +02:00
|
|
|
- name: Get log from symfony
|
2021-08-04 10:47:55 +02:00
|
|
|
run: docker exec -it cc-php tail var/log/prod.log
|
2021-08-03 18:03:30 +02:00
|
|
|
|
|
|
|
- name: Stop containers
|
|
|
|
if: always()
|
|
|
|
run: docker-compose -f "docker-compose.yml" down
|