Skip to content

Commit

Permalink
deleted slashes in docker compose urls
Browse files Browse the repository at this point in the history
  • Loading branch information
caitoor committed May 5, 2024
1 parent ff6a959 commit 6ffc5ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
frontend:
image: ghcr.io/caitoor/starbugs_frontend:latest
environment:
- VITE_API_BASE_URL=https://${BACKEND_SUBDOMAIN}.${DOMAIN}/
- VITE_API_BASE_URL=https://${BACKEND_SUBDOMAIN}.${DOMAIN}
deploy:
replicas: 1
update_config:
Expand Down Expand Up @@ -32,7 +32,7 @@ services:
- MONGO_COLLECTION=${MONGO_COLLECTION}
- MONGO_INITDB_ROOT_USERNAME=${MONGO_INITDB_ROOT_USERNAME}
- MONGO_INITDB_ROOT_PASSWORD=${MONGO_INITDB_ROOT_PASSWORD}
- MONGO_URI=mongodb://${MONGO_CONTAINER_NAME}:27017/${MONGO_DB}/
- MONGO_URI=mongodb://${MONGO_CONTAINER_NAME}:27017/${MONGO_DB}
deploy:
replicas: 1
update_config:
Expand Down

0 comments on commit 6ffc5ed

Please sign in to comment.