2 Commits

Author SHA1 Message Date
781f631ddc ️ Updated UI port in README 2023-05-15 11:59:56 -04:00
da51fca060 📌 Pinned mongo version 2023-05-15 11:53:48 -04:00
2 changed files with 9 additions and 8 deletions

View File

@@ -54,7 +54,7 @@ You can get one [here.](https://comicvine.gamespot.com/api/) Metadata scraping w
### Ports
1. `threetwo`, the UI runs on port `8050`
1. `threetwo`, the UI runs on port `5173`
2. `threetwo-core-service` service on `3000`
3. `threetwo-metadata-service` service on `3080`

View File

@@ -1,11 +1,13 @@
version: "3.7"
x-userdata-volume: &userdata-volume
x-userdata-volume:
&userdata-volume
type: bind
source: ${USERDATA_DIRECTORY}
target: /userdata
target: /userdata
x-comics-volume: &comics-volume
x-comics-volume:
&comics-volume
type: bind
source: ${COMICS_DIRECTORY}
target: /comics
@@ -20,8 +22,6 @@ services:
env_file: docker-compose.env
restart: unless-stopped
ports:
- "8050:8050"
- "3050:3050"
- "5173:5173"
links:
- core-services
@@ -74,7 +74,7 @@ services:
- proxy
db:
image: "bitnami/mongodb:latest"
image: "bitnami/mongodb:4.4.4"
container_name: database
networks:
- proxy
@@ -94,7 +94,7 @@ services:
- "6379:6379"
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.16.2
image: docker.elastic.co/elasticsearch/elasticsearch:8.6.0
container_name: elasticsearch
environment:
- "discovery.type=single-node"
@@ -114,6 +114,7 @@ services:
networks:
proxy:
external: true
name: proxy
volumes:
mongodb_data: