Skip to content

Commit 68641f9

Browse files
authored
chore(examples/templates/incus): fix incus group name in README (coder#12120)
1 parent e938690 commit 68641f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/templates/incus/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ Develop in an Incus System Container and run nested Docker containers using Incu
1414
1. Install [Incus](https://linuxcontainers.org/incus/) on the same machine as Coder.
1515
2. Allow Coder to access the Incus socket.
1616

17-
- If you're running Coder as system service, run `sudo usermod -aG incus coder` and restart the Coder service.
18-
- If you're running Coder as a Docker Compose service, get the group ID of the `incus` group by running `getent group incus` and add the following to your `compose.yaml` file:
17+
- If you're running Coder as system service, run `sudo usermod -aG incus-admin coder` and restart the Coder service.
18+
- If you're running Coder as a Docker Compose service, get the group ID of the `incus-admin` group by running `getent group incus-admin` and add the following to your `compose.yaml` file:
1919

2020
```yaml
2121
services:
2222
coder:
2323
volumes:
2424
- /var/lib/incus/unix.socket:/var/lib/incus/unix.socket
2525
group_add:
26-
- 997 # Replace with the group ID of the `incus` group
26+
- 996 # Replace with the group ID of the `incus-admin` group
2727
```
2828
2929
3. Create a storage pool named `coder` and `btrfs` as the driver by running `incus storage create coder btrfs`.

0 commit comments

Comments
 (0)