diff options
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 44c809c..d6d8460 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -15,15 +15,15 @@ services: - 5556 worker1: <<: *common - command: ["./cimple-worker"] + command: ["cimple-worker"] depends_on: [server] worker2: <<: *common - command: ["./cimple-worker"] + command: ["cimple-worker"] depends_on: [server] client: <<: *common command: [] depends_on: [server] - entrypoint: ["./cimple-client"] + entrypoint: ["cimple-client"] restart: 'no' |