You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 17, 2023. It is now read-only.
DISCORD_SERVER_ID: ${DISCORD_SERVER_ID:?Discord Server ID not set.}
DISCORD_TOKEN: ${DISCORD_TOKEN:?Discord token not set.}
MONGO_URI: 'mongodb://${MONGO_USER:?Mongo user not set.}:${MONGO_PASSWORD:?Mongo password not set.}@nn_db:27017/${MONGO_DATABASE:?Mongo database name not set.}?authSource=admin'
nn_frontend:
image: pocketfoundation/node-nanny-ui:latest-beta
container_name: nn_frontend
ports:
- '3000:3000'
hostname: nn_frontend
depends_on:
- nn_backend
- nn_db
- nn_redis
nn_db:
image: mongo:latest
container_name: nn_db
environment:
MONGO_INITDB_DATABASE: ${MONGO_DATABASE:?Mongo database name not set.}
MONGO_INITDB_ROOT_USERNAME: ${MONGO_USER:?Mongo user not set.}
MONGO_INITDB_ROOT_PASSWORD: ${MONGO_PASSWORD:?Mongo password not set.}