mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-08-01 17:38:33 +00:00
Add the scirpts for auto deploy.
This commit is contained in:
parent
4efb56af03
commit
5966dd78e6
7 changed files with 109 additions and 6 deletions
13
dockerfiles/run.sh
Executable file
13
dockerfiles/run.sh
Executable file
|
@ -0,0 +1,13 @@
|
|||
# Configs
|
||||
MYSQL_PASSWORD="kuajie8402"
|
||||
MYSQL_RUN_NAME="gogs_mysql"
|
||||
typeset -u MYSQL_ALIAS
|
||||
MYSQL_ALIAS="db"
|
||||
HOST_PORT="3000"
|
||||
|
||||
## Run MySQL image with name
|
||||
docker run -d --name $MYSQL_RUN_NAME gogs/mysql
|
||||
#
|
||||
## Run gogits image and link it to the MySQL image
|
||||
docker run --link $MYSQL_RUN_NAME:$MYSQL_ALIAS -p $HOST_PORT:3000 gogs/gogits
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue