mirror of
https://codeberg.org/forgejo/docs.git
synced 2024-11-21 17:36:59 -05:00
small update to docker compose (quoted boolean, compose as module) (again) (#525)
Hi, somehow I made a hash of the last PR #522 so it failed linting again. I hope it is ok now. Sorry for the noise! Reviewed-on: https://codeberg.org/forgejo/docs/pulls/525 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Co-authored-by: Christian Drexler <xunzi@noreply.codeberg.org> Co-committed-by: Christian Drexler <xunzi@noreply.codeberg.org>
This commit is contained in:
parent
b4354d111a
commit
798fee5b11
1 changed files with 5 additions and 2 deletions
|
@ -153,7 +153,7 @@ services:
|
||||||
docker-in-docker:
|
docker-in-docker:
|
||||||
image: docker:dind
|
image: docker:dind
|
||||||
container_name: 'docker_dind'
|
container_name: 'docker_dind'
|
||||||
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'
|
||||||
|
|
||||||
|
@ -177,7 +177,10 @@ services:
|
||||||
```
|
```
|
||||||
|
|
||||||
Here, we're not running the `forgejo-runner daemon` yet because we
|
Here, we're not running the `forgejo-runner daemon` yet because we
|
||||||
need to register it first. Follow the registration instructions below
|
need to register it first. Please note that in a recent install of
|
||||||
|
docker `docker-compose`is not a separate command but should be run as
|
||||||
|
`docker compose`.
|
||||||
|
Follow the registration instructions below
|
||||||
by starting the `runner` service with `docker-compose up -d` and
|
by starting the `runner` service with `docker-compose up -d` and
|
||||||
entering it via:
|
entering it via:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue