MySQL Download URL
https://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.46-linux-glibc2.12-x86_64.tar.gz
- Uninstall any existing version of MySQL
sudo rm /var/lib/mysql/ -R
| #!/bin/bash | |
| # Update the system | |
| sudo apt-get update | |
| # Install Docker | |
| sudo apt-get install -y docker.io | |
| # Install apt-transport-https and curl | |
| sudo apt-get install -y apt-transport-https curl |
| apiVersion: v1 | |
| kind: Service | |
| metadata: | |
| name: rails-app-service | |
| spec: | |
| selector: | |
| app: rails-app | |
| ports: | |
| - name: http | |
| port: 80 |
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| name: rails-app | |
| spec: | |
| replicas: 1 | |
| selector: | |
| matchLabels: | |
| app: rails-app | |
| template: |
| // Copyright 2016-2020 Crytek GmbH / Crytek Group. All rights reserved. | |
| #include "StdAfx.h" | |
| #include "Player.h" | |
| #include "Bullet.h" | |
| #include "SpawnPoint.h" | |
| #include "GamePlugin.h" | |
| #include <CryRenderer/IRenderAuxGeom.h> | |
| #include <CrySchematyc/Env/Elements/EnvComponent.h> | |
| #include <CryCore/StaticInstanceList.h> |