overleaf cleanup

This commit is contained in:
debian
2024-02-23 01:26:53 +01:00
parent 332ca56701
commit e99bae5d7b
4 changed files with 0 additions and 112 deletions

View File

@@ -1,23 +0,0 @@
services:
mongo-express:
extends:
file: ${TEMPLATES_PATH}
service: default
image: mongo-express
container_name: mongo-express
ports:
- 8086:8081
environment:
ME_CONFIG_BASICAUTH_USERNAME: ${MONGO_EXPRESS_USERNAME}
ME_CONFIG_BASICAUTH_PASSWORD: ${MONGO_EXPRESS_PASSWORD}
ME_CONFIG_MONGODB_ADMINUSERNAME: ${MONGO_EXPRESS_USERNAME}
ME_CONFIG_MONGODB_ADMINPASSWORD: ${MONGO_EXPRESS_PASSWORD}
ME_CONFIG_MONGODB_URL: mongodb://${MONGO_DB_USERNAME}:${MONGO_DB_ROOT_PASSWORD}@mongodb:27017/
labels:
# Watchtower
- "com.centurylinklabs.watchtower.enable=true"
# Traefik
- "traefik.enable=true"
- "traefik.http.routers.mongo-express.rule=Host(`mongo-express.${LOCAL_DOMAIN}`)"
- "traefik.http.routers.mongo-express.entrypoints=https"
- "traefik.http.routers.mongo-express.tls=true"

View File

@@ -1,18 +0,0 @@
services:
mongodb:
extends:
file: ${TEMPLATES_PATH}
service: default
image: mongo:latest
container_name: mongodb
expose:
- 27017
environment:
MONGO_INITDB_ROOT_USERNAME: ${MONGO_DB_USERNAME}
MONGO_INITDB_ROOT_PASSWORD: ${MONGO_DB_ROOT_PASSWORD}
volumes:
- ${DB_PATH}/mongodb/data:/data/db
- ${DB_PATH}/mongodb/init/mongo-init.sh:/docker-entrypoint-initdb.d/mongo-init.sh:ro
labels:
# Watchtower
- "com.centurylinklabs.watchtower.enable=true"