We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The generated docker-compose.yml file below is not accepted by docker compose
version: "3" services: seafile-memcached: container_name: seafile-memcached entrypoint: - memcached - -m - 256
I had to group the entry point as below to avoid the error (everything in one line)
services.seafile-memcached.entrypoint.2 must be a string
entrypoint: memcached -m 256
Hope it helps
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The generated docker-compose.yml file below is not accepted by docker compose
I had to group the entry point as below to avoid the error (everything in one line)
Hope it helps
The text was updated successfully, but these errors were encountered: