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
<?xml version="1.0"?> | |
<gateway> | |
<version>Kannel bearerbox version `1.4.5'. | |
Compiler `9.2.1 20200220'. | |
System Linux, release 5.15.90.1-microsoft-standard-WSL2, version #1 SMP Fri Jan 27 02:56:13 UTC 2023, machine x86_64. | |
Hostname 949c6a91c5c8, IP 172.20.0.10. | |
Libxml version 2.9.10. | |
Using OpenSSL 1.1.1d 10 Sep 2019. | |
Compiled with MySQL 8.0.19, using MySQL 8.0.35. | |
Compiled with PostgreSQL 12.2 (Ubuntu 12.2-1). |
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
image: node:8 | |
deploy-to-aws: | |
stage: deploy | |
script: | |
- apt-get update | |
- apt-get -y install apt-transport-https | |
- curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - | |
- echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list | |
- apt-get update |