docker-autocompose icon indicating copy to clipboard operation
docker-autocompose copied to clipboard

issue with some entry point

Open shuther opened this issue 2 years ago • 0 comments

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

shuther avatar Aug 14 '22 18:08 shuther