chore: remove docker-compose configuration
- Delete the docker-compose.yml file, which contained service definitions for postgres, meilisearch, migrate, api, indexer, backoffice, and associated volumes. - This change may indicate a shift in deployment strategy or service management.
This commit is contained in:
@@ -18,7 +18,7 @@ services:
|
|||||||
meilisearch:
|
meilisearch:
|
||||||
image: getmeili/meilisearch:v1.12
|
image: getmeili/meilisearch:v1.12
|
||||||
env_file:
|
env_file:
|
||||||
- ../.env
|
- .env
|
||||||
ports:
|
ports:
|
||||||
- "7700:7700"
|
- "7700:7700"
|
||||||
volumes:
|
volumes:
|
||||||
@@ -39,7 +39,7 @@ services:
|
|||||||
POSTGRES_PASSWORD: stripstream
|
POSTGRES_PASSWORD: stripstream
|
||||||
POSTGRES_DB: stripstream
|
POSTGRES_DB: stripstream
|
||||||
volumes:
|
volumes:
|
||||||
- ./migrations:/migrations:ro
|
- ./infra/migrations:/migrations:ro
|
||||||
command:
|
command:
|
||||||
[
|
[
|
||||||
"sh",
|
"sh",
|
||||||
@@ -49,15 +49,15 @@ services:
|
|||||||
|
|
||||||
api:
|
api:
|
||||||
build:
|
build:
|
||||||
context: ..
|
context: .
|
||||||
dockerfile: apps/api/Dockerfile
|
dockerfile: apps/api/Dockerfile
|
||||||
env_file:
|
env_file:
|
||||||
- ../.env
|
- .env
|
||||||
ports:
|
ports:
|
||||||
- "7080:8080"
|
- "7080:8080"
|
||||||
volumes:
|
volumes:
|
||||||
- ${LIBRARIES_HOST_PATH:-../libraries}:/libraries
|
- ${LIBRARIES_HOST_PATH:-./libraries}:/libraries
|
||||||
- ${THUMBNAILS_HOST_PATH:-../data/thumbnails}:/data/thumbnails
|
- ${THUMBNAILS_HOST_PATH:-./data/thumbnails}:/data/thumbnails
|
||||||
depends_on:
|
depends_on:
|
||||||
migrate:
|
migrate:
|
||||||
condition: service_completed_successfully
|
condition: service_completed_successfully
|
||||||
@@ -73,15 +73,15 @@ services:
|
|||||||
|
|
||||||
indexer:
|
indexer:
|
||||||
build:
|
build:
|
||||||
context: ..
|
context: .
|
||||||
dockerfile: apps/indexer/Dockerfile
|
dockerfile: apps/indexer/Dockerfile
|
||||||
env_file:
|
env_file:
|
||||||
- ../.env
|
- .env
|
||||||
ports:
|
ports:
|
||||||
- "7081:8081"
|
- "7081:8081"
|
||||||
volumes:
|
volumes:
|
||||||
- ${LIBRARIES_HOST_PATH:-../libraries}:/libraries
|
- ${LIBRARIES_HOST_PATH:-./libraries}:/libraries
|
||||||
- ${THUMBNAILS_HOST_PATH:-../data/thumbnails}:/data/thumbnails
|
- ${THUMBNAILS_HOST_PATH:-./data/thumbnails}:/data/thumbnails
|
||||||
depends_on:
|
depends_on:
|
||||||
migrate:
|
migrate:
|
||||||
condition: service_completed_successfully
|
condition: service_completed_successfully
|
||||||
@@ -97,10 +97,10 @@ services:
|
|||||||
|
|
||||||
backoffice:
|
backoffice:
|
||||||
build:
|
build:
|
||||||
context: ..
|
context: .
|
||||||
dockerfile: apps/backoffice/Dockerfile
|
dockerfile: apps/backoffice/Dockerfile
|
||||||
env_file:
|
env_file:
|
||||||
- ../.env
|
- .env
|
||||||
environment:
|
environment:
|
||||||
- PORT=8082
|
- PORT=8082
|
||||||
- HOST=0.0.0.0
|
- HOST=0.0.0.0
|
||||||
Reference in New Issue
Block a user