Clean up docker-compose

- Mount the local directory to /app
- Reformat the file paths to generically indicate what their purpose is
- Add comments to assist users who wasnt to modify properties themselves
This commit is contained in:
Saba 2022-01-24 14:10:18 -05:00
parent 4ae8c15170
commit 9802023c79

View file

@ -3,15 +3,30 @@ services:
server: server:
build: build:
context: . context: .
dockerfile: Dockerfile
args: args:
- PORT=8000 - PORT=8000
ports: ports:
# If changing the local port (left hand side), no other changes required.
# If changing the remote port (right hand side),
# change the port in the args in the build section,
# as well as the port in the command section to match
- "8000:8000" - "8000:8000"
working_dir: /app
volumes: volumes:
- .:/code - .:/app
- /home/saba/notes/:/data/notes/ # These mounted volumes hold the raw data that should be indexed for search.
- /home/saba/embeddings/:/data/generated/ # The path in your local directory (left hand side)
- /home/saba/images/:/data/images/ # points to the files you want to index.
- /home/saba/ledger/:/data/ledger/ # The path of the mounted directory (right hand side),
- /home/saba/music/:/data/music/ # must match the path prefix in your config file.
- /path/to/notes/:/data/notes/
- /path/to/photos/:/data/images/
- /path/to/ledger/:/data/ledger/
- /path/to/music/:/data/music/
# It's ok if you don't have existing embeddings.
# Leave the line as is - an empty volume will be created if it doesn't exist.
- /path/to/embeddings/:/data/generated/
# Use 0.0.0.0 to explicitly set the host ip for the service on the container. https://pythonspeed.com/articles/docker-connection-refused/
command: --host="0.0.0.0" --port=8000 -c=docker_sample_config.yml command: --host="0.0.0.0" --port=8000 -c=docker_sample_config.yml