Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/.docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
enable-url-completion: true
- name: Export tag for Testing and Scanning
id: tag
run: echo "TAG=$(echo "${{ steps.meta.outputs.tags }}" | tail -n 1)" >> $GITHUB_OUTPUT

Check failure on line 129 in .github/workflows/.docker.yaml

View workflow job for this annotation

GitHub Actions / Lint / ActionLint

shellcheck reported issue in this script: SC2086:info:1:68: Double quote to prevent globbing and word splitting
docker_scout:
name: Docker Scout CVEs
needs: build_image
Expand Down Expand Up @@ -245,7 +245,7 @@
name: container_health
services:
vector_database:
image: qdrant/qdrant:latest@sha256:b3063c673f3973877c038eeecc392bad5011f072ee7892b56c9a8e204a3bdea9
image: qdrant/qdrant:latest@sha256:45f8e3ddc2570a4d029877e1b5ec1045c19b3852b4e22a55c7f43b05aea0ca89
ports:
- 6333:6333
app:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-dev.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Chattr Dev
services:
vector_database:
image: qdrant/qdrant:latest@sha256:b3063c673f3973877c038eeecc392bad5011f072ee7892b56c9a8e204a3bdea9
image: qdrant/qdrant:latest@sha256:45f8e3ddc2570a4d029877e1b5ec1045c19b3852b4e22a55c7f43b05aea0ca89
ports:
- 6333:6333
- 6334:6334

Check failure on line 7 in docker-compose-dev.yaml

View workflow job for this annotation

GitHub Actions / Lint / DCLint

no-unbound-port-interfaces: Service "vector_database" is exporting port "6334:6334" without specifying the interface to listen on.

Check failure on line 7 in docker-compose-dev.yaml

View workflow job for this annotation

GitHub Actions / Lint / DCLint

no-unbound-port-interfaces: Service "vector_database" is exporting port "6333:6333" without specifying the interface to listen on.
volumes:
- qdrant_storage:/qdrant/storage
restart: on-failure:3
Expand All @@ -16,7 +16,7 @@
- command: chown -R nonroot:nonroot /home/nonroot
user: root
- command: chmod -R 700 /home/nonroot
user: root

Check failure on line 19 in docker-compose-dev.yaml

View workflow job for this annotation

GitHub Actions / Lint / DCLint

no-unbound-port-interfaces: Service "video_generator" is exporting port "7862:7860" without specifying the interface to listen on.
volumes:
- huggingface:/home/nonroot/hf
- results:/home/nonroot/results
Expand Down Expand Up @@ -55,7 +55,7 @@
- assets:/home/nonroot/assets
- checkpoint:/home/nonroot/ckpts
- gfpgan:/home/nonroot/gfpgan
post_start:

Check failure on line 58 in docker-compose-dev.yaml

View workflow job for this annotation

GitHub Actions / Lint / DCLint

no-unbound-port-interfaces: Service "voice_generator" is exporting port "7861:7860" without specifying the interface to listen on.
- command: chown -R nonroot:nonroot /home/nonroot
user: root
- command: chmod -R 700 /home/nonroot
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
MODEL__API_KEY: ${MODEL__API_KEY}
VECTOR_DATABASE__URL: http://vector_database:6333
VECTOR_DATABASE__NAME: main
ports:

Check failure on line 15 in docker-compose.yaml

View workflow job for this annotation

GitHub Actions / Lint / DCLint

no-unbound-port-interfaces: Service "chattr" is exporting port "7860:7860" without specifying the interface to listen on.
- 7860:7860
restart: on-failure:3
healthcheck:
Expand All @@ -36,10 +36,10 @@
- command: chmod -R 700 /home/nonroot
user: root
vector_database:
image: qdrant/qdrant:latest@sha256:b3063c673f3973877c038eeecc392bad5011f072ee7892b56c9a8e204a3bdea9
image: qdrant/qdrant:latest@sha256:45f8e3ddc2570a4d029877e1b5ec1045c19b3852b4e22a55c7f43b05aea0ca89
volumes:
- qdrant_storage:/qdrant/storage
ports:

Check failure on line 42 in docker-compose.yaml

View workflow job for this annotation

GitHub Actions / Lint / DCLint

no-unbound-port-interfaces: Service "vector_database" is exporting port "6334:6334" without specifying the interface to listen on.

Check failure on line 42 in docker-compose.yaml

View workflow job for this annotation

GitHub Actions / Lint / DCLint

no-unbound-port-interfaces: Service "vector_database" is exporting port "6333:6333" without specifying the interface to listen on.
- 6333:6333
- 6334:6334
restart: on-failure:3
Expand All @@ -49,7 +49,7 @@
- assets:/home/nonroot/assets
- checkpoint:/home/nonroot/ckpts
- gfpgan:/home/nonroot/gfpgan
ports:

Check failure on line 52 in docker-compose.yaml

View workflow job for this annotation

GitHub Actions / Lint / DCLint

no-unbound-port-interfaces: Service "video_generator" is exporting port "7862:7860" without specifying the interface to listen on.
- 7862:7860
restart: on-failure:3
healthcheck:
Expand Down Expand Up @@ -86,7 +86,7 @@
- huggingface:/home/nonroot/hf
- results:/home/nonroot/results
- logs:/home/nonroot/logs
ports:

Check failure on line 89 in docker-compose.yaml

View workflow job for this annotation

GitHub Actions / Lint / DCLint

no-unbound-port-interfaces: Service "voice_generator" is exporting port "7861:7860" without specifying the interface to listen on.
- 7861:7860
restart: on-failure:3
healthcheck:
Expand Down
Loading