File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -29,3 +29,6 @@ API_EXTERNAL_PORT=3000 # Port on which the API service is made available
29
29
30
30
# API_INTERNAL_HOST= # Defaults to 0.0.0.0, listening to all clients
31
31
# API_INTERNAL_PORT= # Defaults to API_EXTERNAL_PORT
32
+
33
+ # Worker configuration
34
+ DOCKER_SOCKET = /var/run/docker.sock # for a rootless Docker setup, use ${ XDG_RUNTIME_DIR } /docker.sock
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ services:
81
81
volumes :
82
82
- dolos-api-storage:/dolos/storage
83
83
- /tmp:/tmp
84
- - /var/run/docker.sock :/var/run/docker.sock
84
+ - ${DOCKER_SOCKET} :/var/run/docker.sock
85
85
environment :
86
86
DOLOS_API_DATABASE_USERNAME : ${DATABASE_USER:?}
87
87
DOLOS_API_DATABASE_PASSWORD : ${DATABASE_PASSWORD:?}
You can’t perform that action at this time.
0 commit comments