We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 531e133 commit 781d7d3Copy full SHA for 781d7d3
docker-compose.yaml
@@ -1,6 +1,7 @@
1
version: "3.9"
2
+name: "coder"
3
services:
- coder:
4
+ server:
5
# This MUST be stable for our documentation and
6
# other automations.
7
image: ghcr.io/coder/coder:${CODER_VERSION:-latest}
@@ -17,10 +18,13 @@ services:
17
18
# the docker socket, you can uncomment the following
19
# lines and set the group ID to one that has write
20
# permissions on the docker socket.
- #group_add:
21
- # - "998" # docker group on host
+ group_add:
22
+ - "998" # docker group on host
23
volumes:
24
- /var/run/docker.sock:/var/run/docker.sock
25
+ #- /home/j/.ssh/id_rsa:/home/coder/.ssh/id_rsa
26
+ #- /home/j/.ssh/id_rsa.pub:/home/coder/.ssh/id_rsa.pub
27
+ #- /home/j/homelab/coder/coder-templates:/home/coder/templates:Z
28
depends_on:
29
database:
30
condition: service_healthy
0 commit comments