Update databases.yaml

master
Dex Burgess 2024-03-28 05:33:25 +00:00
parent 280fb9d6fe
commit 0add18bcc4
1 changed files with 17 additions and 0 deletions

View File

@ -37,6 +37,23 @@ services:
ports: ports:
- 3306:3306 - 3306:3306
mongo:
image: mongo
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: $MONGO_USER
MONGO_INITDB_ROOT_PASSWORD: $MONGO_PASS
mongo-express:
image: mongo-express
restart: always
#ports:
# - 8081:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: $MONGO_USER
ME_CONFIG_MONGODB_ADMINPASSWORD: $MONGO_PASS
ME_CONFIG_MONGODB_URL: mongodb://$MONGO_USER:$MONGO_PASS@mongo:27017/
phpmyadmin: phpmyadmin:
image: phpmyadmin image: phpmyadmin
container_name: phpmyadmin container_name: phpmyadmin