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

Using docker-compose yields 'ERROR: Cannot locate specified Dockerfile: Dockerfile'

Open zzyzx-dc opened this issue 3 years ago • 2 comments

Sorry if I'm making a rookie mistake. I'm using the following docker-compose.yml:

version: '3' services: filebot: image: jlesage/filebot build: . ports: - "5800:5800" environment: - USER_ID=1000 - GROUP_ID=1000 volumes: - "/docker/appdata/filebot:/config:rw" - "$HOME:/storage:rw" - "/mnt/usb:/usb:rw"

I tried to specify the Dockerfile but that did not work.

zzyzx-dc avatar Dec 10 '20 18:12 zzyzx-dc

I guess you compose file is properly indented ? Which commands are you using ? It should be something like:

docker-compose pull
docker-compose up

jlesage avatar Dec 20 '20 14:12 jlesage

Late reply but deleting the line 'build: .' from your docker-compose.yml will fix this.

justpeterpan avatar Jan 27 '21 14:01 justpeterpan

Closing this issue. Please re-open if needed.

jlesage avatar Jan 07 '23 21:01 jlesage