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
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
| F12::ToggleTerminal() | |
| ShowAndPositionTerminal() | |
| { | |
| WinShow ahk_class CASCADIA_HOSTING_WINDOW_CLASS |
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
| dsdfsdfsdd |
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
| docker run --name db \ | |
| -v /srv/mysql/conf:/etc/mysql \ | |
| -v /srv/mysql/dbs:/var/lib/mysql \ | |
| -e MYSQL_ROOT_PASSWORD=asd \ | |
| -d --publish 3306:3306 \ | |
| --restart="always" \ | |
| mysql:5.6 | |
| create database jsql; | |
| CREATE USER 'jsql'@'%' IDENTIFIED BY 'asd'; |
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
| docker run --name gitlab -d \ | |
| --env 'DB_HOST=192.168.0.111' --env 'DB_TYPE=mysql' \ | |
| --env 'REDIS_HOST=192.168.0.111' --env 'REDIS_PORT=6379' \ | |
| --env 'DB_NAME=gitlabhq_production' \ | |
| --env 'DB_USER=gitlab' --env 'DB_PASS=asdprivate' \ | |
| --volume /srv/gitlab/gitlab:/home/git/data \ | |
| --volume /srv/gitlab/config:/etc/gitlab \ | |
| --volume /srv/gitlab/logs:/var/log/gitlab \ | |
| --publish 22:22 --publish 8888:80 --publish 8443:443 \ | |
| sameersbn/gitlab:7.14.0 |