-
When running with Docker, the program exists with the following message:
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
Did you create the config.yaml. This file must exist and will mount as volume. See wiki for a complete docker example |
Beta Was this translation helpful? Give feedback.
-
Yes. I did Then ran But yielded said result. |
Beta Was this translation helpful? Give feedback.
-
You must specify the absolute path for docker volume. Please use this command: Example config.yml specifies "/logs" directory for logs, so please specify another docker volume for this: |
Beta Was this translation helpful? Give feedback.
-
Thank you! |
Beta Was this translation helpful? Give feedback.
You must specify the absolute path for docker volume. Please use this command:
docker run --rm --name blocky -v $(pwd)/config.yml:/app/config.yml -p 4000:4000 -p 55555:55555/udp spx01/blocky
Example config.yml specifies "/logs" directory for logs, so please specify another docker volume for this:
docker run --rm --name blocky -v $(pwd)/config.yml:/app/config.yml -v $(pwd)/logs:/logs -p 4000:4000 -p 55555:55555/udp spx01/blocky