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
AWSTemplateFormatVersion: "2010-09-09" | |
Description: Pipeline | |
Parameters: | |
SsmSlackWebHookParam: | |
Type: String | |
Description: Slack web hook path from ssm parameter store | |
Default: "/DEVOPS/SLACKWEBHOOK" | |
Resources: | |
PipelineEventsRule: | |
Type: 'AWS::Events::Rule' |
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/bash | |
mkdir -p $(pwd)/minecraft-data | |
### other ops | |
# docker exec -i mc rcon-cli | |
# -e MEMORY=2G | |
# -e TYPE=SPIGOT | |
# -e OVERRIDE_SERVER_PROPERTIES=true ... | |
# -e SERVER_NAME=MyServer ... |
OlderNewer