Docker compose .gitignore update (#100)

Docker compose allows override some settings in `docker-compose.yml` by
using additional file: `docker-compose.override.yml`.
This allows to hold own settings in override file which does not
conflict with updates made by pulling newer version with "git pull"
command.

This feature requires three things:
1. Creating `docker-compose.override.yml-dist` file which is a
distributed file inside repo. This file can be copied as
`docker-compose.override.yml` and modified for own needs.
2. Change in `.gitignore` file so `docker-compose.override.yml` file is
ignored, so git pull / commit will not complain about this file.
3. Modify wiki entry about setup to mention possibility to use this
method.

Closes #101
pull/104/head
Sebastian Piechowiak 2 years ago committed by GitHub
parent 43a5e5e85f
commit ef36c50cf9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

3
.gitignore vendored

@ -1,3 +1,4 @@
/dev
/.devcontainer
embeddings/*
embeddings/*
/docker-compose.override.yml

Loading…
Cancel
Save