Skip to content

Commit

Permalink
Fix/failed to read dockerfile/issue 984 (#987)
Browse files Browse the repository at this point in the history
* fix: Removed `docs` from `docker-compose.yml`

The `Dockerfile` is missing in the `docs` directory, so having `docs` inside the `docker-compose.yml` file makes the command `docker-compose up` fail.

* chore: Added suggestion for a possible mistake in docker-compose.yml
  • Loading branch information
Gsciarra authored Jul 6, 2023
1 parent b6bb508 commit ee940f5
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ services:

weaviate:
image: semitechnologies/weaviate:1.19.6
restart: on-failure:0
restart: on-failure:0 # this should be 'no' or at least have ':1'
ports:
- "8080:8080"
environment:
Expand All @@ -68,11 +68,6 @@ services:
volumes:
- weaviate:/var/lib/weaviate

docs:
build: ./docs
ports:
- "3001:3001"

volumes:
weaviate:
db_data:

0 comments on commit ee940f5

Please sign in to comment.