Skip to content
This repository was archived by the owner on May 5, 2021. It is now read-only.

Commit a27c796

Browse files
author
Antonios Papadakis
committed
Fix YAML Syntax
1 parent 31e9754 commit a27c796

File tree

4 files changed

+17
-16
lines changed

4 files changed

+17
-16
lines changed

.github/workflows/YAMLLint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: 'YAML Lint'
23
on:
34
- pull_request

.github/workflows/shellcheck.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: 'ShellCheck'
23
on:
34
- pull_request
@@ -6,11 +7,11 @@ jobs:
67
runs-on: ubuntu-latest
78
steps:
89
- uses: actions/checkout@v1
9-
- name: Run the sh-checker
10+
- name: 'Run the ShellCheck'
1011
uses: luizm/action-sh-checker@v0.1.4
1112
env:
1213
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13-
SHELLCHECK_OPTS: -e SC2164 SC2162 SC2016 SC1090 # It is posible to exclude some shellcheck warnings.
14+
SHELLCHECK_OPTS: -e SC2164 SC2162 SC2016 SC1090 #exclude shellcheck warnings.
1415
with:
1516
sh_checker_comment: true
1617
sh_checker_shfmt_disable: true

macos/Docker/dockerFiles/docker-compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ services:
88
container_name: php74
99
depends_on:
1010
- database
11-
ports:
11+
ports:
1212
- "80:80"
13-
volumes:
13+
volumes:
1414
- "./php:/var/www/html"
15-
database:
15+
database:
1616
command: "--default-authentication-plugin=mysql_native_password"
1717
container_name: mysql8
18-
environment:
18+
environment:
1919
MYSQL_DATABASE: defaultdb
2020
MYSQL_ROOT_PASSWORD: "rootPass"
2121
MYSQL_USER: "dbuser"
2222
MYSQL_PASSWORD: "dbuserpassword"
2323
image: "mysql:8.0.21"
24-
ports:
24+
ports:
2525
- "6033:3306"
2626
restart: always
Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,26 @@
11
---
22
version: "3.8"
3-
services:
4-
web:
5-
build:
3+
services:
4+
web:
5+
build:
66
context: ./php
77
dockerfile: Dockerfile
88
container_name: php74
99
depends_on:
1010
- database
11-
ports:
11+
ports:
1212
- "80:80"
13-
volumes:
13+
volumes:
1414
- "./php:/var/www/html"
15-
database:
15+
database:
1616
command: "--default-authentication-plugin=mysql_native_password"
1717
container_name: mysql8
18-
environment:
18+
environment:
1919
MYSQL_DATABASE: defaultdb
2020
MYSQL_ROOT_PASSWORD: "rootPass"
2121
MYSQL_USER: "dbuser"
2222
MYSQL_PASSWORD: "dbuserpassword"
2323
image: "mysql:8.0.21"
24-
ports:
24+
ports:
2525
- "6033:3306"
2626
restart: always
27-

0 commit comments

Comments
 (0)