i am using this docker image of genieacs: drumsergio/genieacs:1.2.13
this image is deployed on the server, the genieacs config keeps getting reset time and again without any manual intervention, without any manual command, whenever i open geniacs, I get the notification "config has been modified" and initialization wizard comes up and all the custom provisions and presets i created keep getting wiped out, i tried alot many thing to fix this but it keeps happening, kindly someone please help, tried everything, this image is deployed on a OCI server instance.
i create custom provisions and presets on genieacs startup, i have automated scripts doing that.
these are the images i am using:
version: ‘3.8’
services:
mongo:
image: mongo:7.0
restart: always
container_name: “mongo-genieacs”
env_file:
- .prod.env
environment: - MONGO_INITDB_ROOT_USERNAME=${MONGO_USERNAME}
- MONGO_INITDB_ROOT_PASSWORD=${MONGO_PASSWORD}
- MONGO_DATA_DIR=/data/db
- MONGO_LOG_DIR=/var/log/mongodb
volumes: - data_db:/data/db
- data_configdb:/data/configdb
expose: - 27017
ports: - “27017:27017”
genieacs:
image: drumsergio/genieacs:1.2.13
restart: unless-stopped
container_name: genieacs
depends_on:
- mongo
environment: - GENIEACS_UI_JWT_SECRET=${GENIEACS_UI_JWT_SECRET}
- GENIEACS_CWMP_ACCESS_LOG_FILE=/var/log/genieacs/genieacs-cwmp-access.log
- GENIEACS_NBI_ACCESS_LOG_FILE=/var/log/genieacs/genieacs-nbi-access.log
- GENIEACS_FS_ACCESS_LOG_FILE=/var/log/genieacs/genieacs-fs-access.log
- GENIEACS_UI_ACCESS_LOG_FILE=/var/log/genieacs/genieacs-ui-access.log
- GENIEACS_DEBUG_FILE=/var/log/genieacs/genieacs-debug.yaml
- GENIEACS_EXT_DIR=/opt/genieacs/ext
- GENIEACS_MONGODB_CONNECTION_URL=${MONGO_URI}
ports: - “7547:7547”
- “7557:7557”
- “7567:7567”
- “3000:3000”
volumes: - opt_volume:/opt
genieacs-sim:
image: drumsergio/genieacs-sim
container_name: genieacs-simulator
depends_on:
- genieacs
URGENT HELP NEEDED