This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # ISC License | |
| # Copyright (c) 2026 Alexandre Gomes Gaigalas <alganet@gmail.com> | |
| # Permission to use, copy, modify, and/or distribute this software for any | |
| # purpose with or without fee is hereby granted, provided that the above | |
| # copyright notice and this permission notice appear in all copies. | |
| # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "InstanceName": "win2016VM", | |
| "ConsumedService": "Microsoft.Compute", | |
| "UsageQuantity": 0.000008, | |
| "UsageStart": "2020-11-16T00:00:00Z", | |
| "UsageEnd": "2020-11-16T23:59:59Z" | |
| }, | |
| { | |
| "InstanceName": "ontouchstart", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "UsageQuantity": 0.000008, | |
| "UsageStart": "2020-11-16T00:00:00Z", | |
| "UsageEnd": "2020-11-16T23:59:59Z" | |
| }, | |
| { | |
| "UsageQuantity": 0.000008, | |
| "UsageStart": "2020-11-17T00:00:00Z", | |
| "UsageEnd": "2020-11-17T23:59:59Z" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "UsageQuantity": 0.009636, | |
| "UsageStart": "2020-11-17T00:00:00Z", | |
| "UsageEnd": "2020-11-17T23:59:59Z" | |
| }, | |
| { | |
| "UsageQuantity": 0.004827, | |
| "UsageStart": "2020-11-16T00:00:00Z", | |
| "UsageEnd": "2020-11-16T23:59:59Z" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "AccountName": null, | |
| "AdditionalInfo": null, | |
| "AdditionalProperties": null, | |
| "BillableQuantity": null, | |
| "BillingPeriodId": "/subscriptions/2441ec97-42d8-424a-a820-c4aefaa7c958/providers/Microsoft.Billing/billingPeriods/202012", | |
| "BillingPeriodName": "202012", | |
| "ConsumedService": "Microsoft.Compute", | |
| "CostCenter": null, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3.3' | |
| services: | |
| db: | |
| image: mysql:5.7 | |
| volumes: | |
| - db_data:/var/lib/mysql | |
| restart: always | |
| environment: | |
| MYSQL_ROOT_PASSWORD: somewordpress |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| up: | |
| docker-compose up -d | |
| down: | |
| docker-compose down | |
| rebuild: | |
| docker-compose run web bundle install | |
| docker-compose build |