Remove entrypoint from sample docker-compose.yml (#252)
Resolves #225 Entrypoint in Dockerfile specifies default bind, filespath, metapath. Having entrypoint in docker-compose.yml will remove those defaults. Without the entrypoint line, the command executed is: `/usr/local/bin/linx-server -bind=0.0.0.0:8080 -filespath=/data/files/ -metapath=/data/meta/ -config /data/linx-server.conf`
This commit is contained in:
parent
91b9885ac6
commit
486cc6ff77
|
@ -54,7 +54,6 @@ services:
|
||||||
linx-server:
|
linx-server:
|
||||||
container_name: linx-server
|
container_name: linx-server
|
||||||
image: andreimarcu/linx-server
|
image: andreimarcu/linx-server
|
||||||
entrypoint: /usr/local/bin/linx-server
|
|
||||||
command: -config /data/linx-server.conf
|
command: -config /data/linx-server.conf
|
||||||
volumes:
|
volumes:
|
||||||
- /path/to/files:/data/files
|
- /path/to/files:/data/files
|
||||||
|
|
Loading…
Reference in New Issue