🔧 Updated docker-compose config

This commit is contained in:
2022-03-27 23:50:37 -07:00
parent 3c70bf28bb
commit 0f9066c1f7

View File

@@ -14,7 +14,7 @@ x-comics-volume:
services: services:
threetwo: threetwo:
build: build:
context: https://github.com/rishighan/threetwo-docker-compose.git context: https://github.com/rishighan/threetwo.git
dockerfile: Dockerfile dockerfile: Dockerfile
image: frishi/threetwo image: frishi/threetwo
container_name: threetwo-ui container_name: threetwo-ui
@@ -22,8 +22,8 @@ services:
ports: ports:
- "8050:8050" - "8050:8050"
- "3050:3050" - "3050:3050"
links: # links:
- importapi # - importapi
depends_on: depends_on:
- db - db
- elasticsearch - elasticsearch
@@ -32,77 +32,77 @@ services:
networks: networks:
- proxy - proxy
comicvineapi: # comicvineapi:
build: # build:
context: https://github.com/rishighan/threetwo-metadata-service.git # context: https://github.com/rishighan/threetwo-metadata-service.git
image: frishi/threetwo-metadata-service # image: frishi/threetwo-metadata-service
container_name: comicvine-api # container_name: comicvine-api
ports: # ports:
- "3080:3080" # - "3080:3080"
volumes: # volumes:
- *comics-volume # - *comics-volume
- *userdata-volume # - *userdata-volume
environment: # environment:
SERVICES: api # SERVICES: api
env_file: docker-compose.env # env_file: docker-compose.env
depends_on: # depends_on:
- redis # - redis
networks: # networks:
- proxy # - proxy
comicvine: # comicvine:
build: # build:
context: https://github.com/rishighan/threetwo-metadata-service.git # context: https://github.com/rishighan/threetwo-metadata-service.git
image: frishi/threetwo-metadata-service # image: frishi/threetwo-metadata-service
container_name: comicvine-service # container_name: comicvine-service
environment: # environment:
SERVICES: comicvine # SERVICES: comicvine
env_file: docker-compose.env # env_file: docker-compose.env
volumes: # volumes:
- *comics-volume # - *comics-volume
- *userdata-volume # - *userdata-volume
networks: # networks:
- proxy # - proxy
importapi: # importapi:
build: # build:
context: https://github.com/rishighan/threetwo-core-service.git # context: https://github.com/rishighan/threetwo-core-service.git
image: frishi/threetwo-core-service # image: frishi/threetwo-core-service
container_name: importapi # container_name: importapi
ports: # ports:
- "3000:3000" # - "3000:3000"
- "3001:3001" # - "3001:3001"
environment: # environment:
SERVICES: api # SERVICES: api
env_file: docker-compose.env # env_file: docker-compose.env
volumes: # volumes:
- *comics-volume # - *comics-volume
- *userdata-volume # - *userdata-volume
depends_on: # depends_on:
- redis # - redis
- db # - db
networks: # networks:
- proxy # - proxy
core-services: # core-services:
build: # build:
context: https://github.com/rishighan/threetwo-core-service.git # context: https://github.com/rishighan/threetwo-core-service.git
image: frishi/threetwo-core-service # image: frishi/threetwo-core-service
container_name: core-services # container_name: core-services
depends_on: # depends_on:
- db # - db
- redis # - redis
- elasticsearch # - elasticsearch
environment: # environment:
name: core-services # name: core-services
SERVICES: library,queue,settings,search,imagetransformation # SERVICES: library,queue,settings,search,imagetransformation
env_file: docker-compose.env # env_file: docker-compose.env
volumes: # volumes:
- *comics-volume # - *comics-volume
- *userdata-volume # - *userdata-volume
networks: # networks:
- proxy # - proxy
db: db:
image: "bitnami/mongodb:latest" image: "bitnami/mongodb:latest"