Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • ultrasoccer/ultrasoccer-nationsleague
  • ultrasoccer/ultrasoccer-superleague
2 results
Show changes
Commits on Source (212)
Showing with 40 additions and 47 deletions
stages:
- update
- build
- start
- jekyll_debug
- stop
- uninstall
- remove
update:
stage: update
......@@ -20,6 +22,21 @@ update:
script:
- deploy/update
build:
stage: build
tags:
- tonyford
only:
refs:
- master
- main
variables:
- $CMD =~ /build/
before_script:
- chmod +x ./setenv && . setenv
script:
- deploy/build
start:
stage: start
tags:
......@@ -79,3 +96,18 @@ uninstall:
- chmod +x ./setenv && . setenv
script:
- deploy/uninstall
remove:
stage: remove
tags:
- tonyford
only:
refs:
- master
- main
variables:
- $CMD =~ /^remove$/
before_script:
- chmod +x ./setenv && . setenv
script:
- deploy/remove
T,H,A,TH,TA,MID
2021-10-11,BW,CM,0,2,885778
2021-10-11,XX,IS,0,2,0
T,H,A,TH,TA,MID
2021-10-12,BW,XX,2,0,0
2021-10-12,CM,IS,3,1,885797
T,H,A,TH,TA,MID
2021-10-13,BW,IS,0,0,885800
2021-10-13,CM,XX,2,0,0
T,H,A,TH,TA,MID
2021-10-14,CM,BW,0,1,885813
2021-10-14,IS,XX,2,0,0
T,H,A,TH,TA,MID
2021-10-15,XX,BW,0,2,0
2021-10-15,IS,CM,0,2,885837
T,H,A,TH,TA,MID
2021-10-16,IS,BW,1,0,885840
2021-10-16,XX,CM,0,2,0
T,H,A,TH,TA,MID
2021-10-24,CM,IS,3,0,885893
T,H,A,TH,TA,MID
2021-10-22,CM,XX,2,0,0
2021-10-22,BW,IS,0,3,885873
kontinent: Afrika
id: BW
name: Botswana (NL)
link: 'https://ultrasoccer.de/players/?id=1452'
manager: FC Lampertheim
start: 26
kontinent: Afrika
id: CM
name: KAMERUN (NL)
link: 'https://ultrasoccer.de/players/?id=687'
manager: lipeco
start: 26
kontinent: Europa
id: IS
name: Island (NL)
link: 'https://ultrasoccer.de/players/?id=2233'
manager: Tony Ford
start: 26
kontinent: Dummy
id: XX
name: <i>Dummy (NL)</i>
link: 'https://ultrasoccer.de/players/?id=2233'
manager: Dummy
start: 26
......@@ -3,4 +3,5 @@ echo ""
echo -e "console/jekyll\t\t( run container shell )"
echo -e "console/jekyll_debug\t\t( run jekyll in debug mode )"
echo -e "console/help"
echo -e "console/php-server\t\t( run container shell )"
echo -e "console/ps \t\t\t( list containers )"
File mode changed from 100644 to 100755
#!/bin/bash
docker-compose exec php-server bash
File mode changed from 100644 to 100755
#!/bin/bash
docker-compose stop --timeout 30
docker-compose down
docker-compose build
#!/bin/bash
echo ""
echo -e "deploy/build \t\t( build image )"
echo -e "deploy/start \t\t( start container )"
echo -e "deploy/stop \t\t( stop container )"
echo -e "deploy/uninstall \t( stop and remove container, named volumes will NOT removed )"
......
File mode changed from 100644 to 100755