Skip to content

Commit 519b7fe

Browse files
authored
Merge branch 'next' into feat/open-version-new-tab
2 parents 927a8ad + 9943199 commit 519b7fe

9 files changed

+22
-156
lines changed

templates/compose/forgejo-with-mariadb.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore: true
12
# documentation: https://forgejo.org/docs
23
# slogan: Forgejo is a self-hosted lightweight software forge. Easy to install and low maintenance, it just does the job.
34
# tags: version control, collaboration, code, hosting, lightweight, mariadb

templates/compose/forgejo-with-mysql.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore: true
12
# documentation: https://forgejo.org/docs
23
# slogan: Forgejo is a self-hosted lightweight software forge. Easy to install and low maintenance, it just does the job.
34
# tags: version control, collaboration, code, hosting, lightweight, mysql

templates/compose/forgejo-with-postgresql.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore: true
12
# documentation: https://forgejo.org/docs
23
# slogan: Forgejo is a self-hosted lightweight software forge. Easy to install and low maintenance, it just does the job.
34
# tags: version control, collaboration, code, hosting, lightweight, postgresql

templates/compose/forgejo-with-runner-with-mariadb.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore: true
12
# documentation: https://forgejo.org/docs
23
# slogan: Forgejo is a self-hosted lightweight software forge. Easy to install and low maintenance, it just does the job.
34
# tags: version control, collaboration, code, hosting, lightweight, runner, mariadb, actions, cicd, ci
@@ -43,8 +44,8 @@ services:
4344
sleep 10 ;
4445
su -c "forgejo forgejo-cli actions register --secret ${RUNNER_SHARED_SECRET}" git ;
4546
sleep infinity
46-
'
47-
47+
'
48+
4849
mariadb:
4950
image: mariadb:11
5051
volumes:
@@ -59,7 +60,7 @@ services:
5960
interval: 5s
6061
timeout: 20s
6162
retries: 10
62-
63+
6364
docker-in-docker:
6465
image: docker:dind
6566
hostname: docker
@@ -106,7 +107,7 @@ services:
106107
chown -R 1000:1000 /data ;
107108
exit 0
108109
'
109-
110+
110111
runner:
111112
image: code.forgejo.org/forgejo/runner:3.5.0
112113
links:

templates/compose/forgejo-with-runner-with-mysql.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore: true
12
# documentation: https://forgejo.org/docs
23
# slogan: Forgejo is a self-hosted lightweight software forge. Easy to install and low maintenance, it just does the job.
34
# tags: version control, collaboration, code, hosting, lightweight, runner, mysql, actions, cicd, ci
@@ -43,8 +44,8 @@ services:
4344
sleep 10 ;
4445
su -c "forgejo forgejo-cli actions register --secret ${RUNNER_SHARED_SECRET}" git ;
4546
sleep infinity
46-
'
47-
47+
'
48+
4849
mysql:
4950
image: mysql:8
5051
volumes:
@@ -59,7 +60,7 @@ services:
5960
interval: 5s
6061
timeout: 20s
6162
retries: 10
62-
63+
6364
docker-in-docker:
6465
image: docker:dind
6566
hostname: docker
@@ -106,7 +107,7 @@ services:
106107
chown -R 1000:1000 /data ;
107108
exit 0
108109
'
109-
110+
110111
runner:
111112
image: code.forgejo.org/forgejo/runner:3.5.0
112113
links:

templates/compose/forgejo-with-runner-with-postgresql.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore: true
12
# documentation: https://forgejo.org/docs
23
# slogan: Forgejo is a self-hosted lightweight software forge. Easy to install and low maintenance, it just does the job.
34
# tags: version control, collaboration, code, hosting, lightweight, runner, postresql, actions, cicd, ci
@@ -43,8 +44,8 @@ services:
4344
sleep 10 ;
4445
su -c "forgejo forgejo-cli actions register --secret ${RUNNER_SHARED_SECRET}" git ;
4546
sleep infinity
46-
'
47-
47+
'
48+
4849
postgresql:
4950
image: postgres:16-alpine
5051
volumes:
@@ -58,7 +59,7 @@ services:
5859
interval: 5s
5960
timeout: 20s
6061
retries: 10
61-
62+
6263
docker-in-docker:
6364
image: docker:dind
6465
hostname: docker
@@ -105,7 +106,7 @@ services:
105106
chown -R 1000:1000 /data ;
106107
exit 0
107108
'
108-
109+
109110
runner:
110111
image: code.forgejo.org/forgejo/runner:3.5.0
111112
links:

templates/compose/forgejo-with-runner.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore: true
12
# documentation: https://forgejo.org/docs
23
# slogan: Forgejo is a self-hosted lightweight software forge. Easy to install and low maintenance, it just does the job.
34
# tags: version control, collaboration, code, hosting, lightweight, runner, actions, cicd, ci
@@ -35,7 +36,7 @@ services:
3536
sleep 10 ;
3637
su -c "forgejo forgejo-cli actions register --secret ${RUNNER_SHARED_SECRET}" git ;
3738
sleep infinity
38-
'
39+
'
3940
4041
docker-in-docker:
4142
image: docker:dind
@@ -83,7 +84,7 @@ services:
8384
chown -R 1000:1000 /data ;
8485
exit 0
8586
'
86-
87+
8788
runner:
8889
image: code.forgejo.org/forgejo/runner:3.5.0
8990
links:

templates/compose/forgejo.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore: true
12
# documentation: https://forgejo.org/docs
23
# slogan: Forgejo is a self-hosted lightweight software forge. Easy to install and low maintenance, it just does the job.
34
# tags: version control, collaboration, code, hosting, lightweight

templates/service-templates.json

Lines changed: 0 additions & 142 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)