demo
Some checks failed
/ test (push) Failing after 23s
/ test2 (push) Successful in 26s

This commit is contained in:
sneakers-the-rat 2024-06-29 00:58:11 -07:00
parent 809928f35c
commit c4a118eb35
Signed by untrusted user who does not match committer: jonny
GPG key ID: 6DCB96EF1E4D232D
2 changed files with 5 additions and 2 deletions

View file

@ -3,7 +3,7 @@ jobs:
test: test:
runs-on: docker runs-on: docker
steps: steps:
- run: echo All Good - run: touch /artifacts/test
test2: test2:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View file

@ -7,6 +7,8 @@ services:
privileged: 'true' privileged: 'true'
command: ['dockerd', '-H', 'tcp://0.0.0.0:2375', '--tls=false'] command: ['dockerd', '-H', 'tcp://0.0.0.0:2375', '--tls=false']
restart: 'unless-stopped' restart: 'unless-stopped'
volumes:
- /home/forgejo-runner/artifacts:/artifacts
gitea: gitea:
image: 'code.forgejo.org/forgejo/runner:3.4.1' image: 'code.forgejo.org/forgejo/runner:3.4.1'
@ -22,6 +24,7 @@ services:
user: 1000:1000 user: 1000:1000
volumes: volumes:
- /home/forgejo-runner/data:/data - /home/forgejo-runner/data:/data
- /home/forgejo-runner/artifacts:/artifacts
restart: 'unless-stopped' restart: 'unless-stopped'
expose: expose:
- "8080" - "8080"