Update databases.yaml

master
Dex Burgess 2024-09-26 06:02:39 +00:00
parent d3e8474765
commit 43652e1015
1 changed files with 32 additions and 0 deletions

View File

@ -16,6 +16,10 @@ services:
- INFLUXDB_DB=$INFLUX_DB - INFLUXDB_DB=$INFLUX_DB
- INFLUXDB_USER=$INFLUX_USER - INFLUXDB_USER=$INFLUX_USER
- INFLUX_USER_PASSWORD=$INFLUX_USER_PASSWORD - INFLUX_USER_PASSWORD=$INFLUX_USER_PASSWORD
logging:
options:
max-size: "10m"
max-file: "3"
chronograf: chronograf:
image: chronograf image: chronograf
@ -23,6 +27,10 @@ services:
restart: unless-stopped restart: unless-stopped
environment: environment:
- INFLUXDB_URL=http://influxdb:8086 - INFLUXDB_URL=http://influxdb:8086
logging:
options:
max-size: "10m"
max-file: "3"
mariadb: mariadb:
image: linuxserver/mariadb image: linuxserver/mariadb
@ -36,6 +44,10 @@ services:
- /dockers/mariadb:/config - /dockers/mariadb:/config
ports: ports:
- 3306:3306 - 3306:3306
logging:
options:
max-size: "10m"
max-file: "3"
mongo: mongo:
image: mongo:4.4.29 image: mongo:4.4.29
@ -44,6 +56,10 @@ services:
volumes: volumes:
- /dockers/mongo/data:/data/db - /dockers/mongo/data:/data/db
- /dockers/init-mongo.js:/docker-entrypoint-initdb.d/init-mongo.js:ro - /dockers/init-mongo.js:/docker-entrypoint-initdb.d/init-mongo.js:ro
logging:
options:
max-size: "10m"
max-file: "3"
mongo-express: mongo-express:
image: mongo-express image: mongo-express
@ -53,6 +69,10 @@ services:
ME_CONFIG_MONGODB_ADMINUSERNAME: $MONGO_USER ME_CONFIG_MONGODB_ADMINUSERNAME: $MONGO_USER
ME_CONFIG_MONGODB_ADMINPASSWORD: $MONGO_PASS ME_CONFIG_MONGODB_ADMINPASSWORD: $MONGO_PASS
ME_CONFIG_MONGODB_URL: mongodb://$MONGO_USER:$MONGO_PASS@mongo:27017/ ME_CONFIG_MONGODB_URL: mongodb://$MONGO_USER:$MONGO_PASS@mongo:27017/
logging:
options:
max-size: "10m"
max-file: "3"
phpmyadmin: phpmyadmin:
image: phpmyadmin image: phpmyadmin
@ -63,6 +83,10 @@ services:
environment: environment:
- PMA_HOST=mariadb - PMA_HOST=mariadb
- PMA_PORT=3306 - PMA_PORT=3306
logging:
options:
max-size: "10m"
max-file: "3"
postgres: postgres:
image: postgres:14.7-alpine image: postgres:14.7-alpine
@ -74,6 +98,10 @@ services:
- /dockers/postgres:/var/lib/postgresql/data - /dockers/postgres:/var/lib/postgresql/data
ports: ports:
- 5432:5432 - 5432:5432
logging:
options:
max-size: "10m"
max-file: "3"
pgadmin4: pgadmin4:
image: dpage/pgadmin4 image: dpage/pgadmin4
@ -85,6 +113,10 @@ services:
- PGADMIN_CONFIG_ENHANCED_COOKIE_PROTECTION=True - PGADMIN_CONFIG_ENHANCED_COOKIE_PROTECTION=True
- 'PGADMIN_CONFIG_LOGIN_BANNER="Authorised users only!"' - 'PGADMIN_CONFIG_LOGIN_BANNER="Authorised users only!"'
- PGADMIN_CONFIG_CONSOLE_LOG_LEVEL=10 - PGADMIN_CONFIG_CONSOLE_LOG_LEVEL=10
logging:
options:
max-size: "10m"
max-file: "3"
networks: networks:
default: default: