this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Redisinsight instead of redis commander

+8 -7
+8 -7
mise/tasks/podman-tasks.toml
··· 23 23 # Create the pod 24 24 "podman pod create --name lumina-postgres-pod -p 8085:8085 -p 5432:5432 -p 8081:8081 -p 8082:8080", 25 25 # Pre-run the redis commander and adminer containers so they are available immediately 26 - "podman run -d --replace --name lumina-redis-commander --pod lumina-postgres-pod -e REDIS_HOSTS=local:lumina-redis:6379 rediscommander/redis-commander:latest", 26 + "podman run -d --replace --name lumina-redisinsight --pod lumina-postgres-pod -e RI_APP_PORT=8081 -e RI_APP_HOST=0.0.0.0 -e RI_REDIS_HOST=lumina-redis -e RI_REDIS_PORT=6379 redislabs/redisinsight:latest", 27 27 "podman run -d --replace --name lumina-adminer --pod lumina-postgres-pod -e ADMINER_DEFAULT_SERVER=luminadb -e ADMINER_DEFAULT_DB_DRIVER=pgsql -e ADMINER_DEFAULT_DB_NAME=lumina_config -e ADMINER_DESIGN=pepa-linha-dark adminer:latest", 28 28 # Build and run 29 - "podman build -f Dockerfile.build -t lumina-server:dev .", 30 29 "podman run -d --name luminadb --pod lumina-postgres-pod -e POSTGRES_USER=lumina -e POSTGRES_PASSWORD=lumina_pw -e POSTGRES_DB=lumina_config -v ./data/postgres:/var/lib/postgresql/data:Z postgres:17-alpine3.22", 31 30 "podman run -d --replace --name lumina-redis --pod lumina-postgres-pod -v ./data/redis:/data:Z redis", 32 - "echo Adminer on http://127.0.0.1:8082, Redis Commander on http://127.0.0.1:8081", 31 + "podman build -f Dockerfile.build -t lumina-server:dev .", 32 + "echo Adminer on http://127.0.0.1:8082, RedisInsight on http://127.0.0.1:8081", 33 33 "podman run --name lumina-server-postgres --pod lumina-postgres-pod -e LUMINA_DB_TYPE=postgres -e LUMINA_POSTGRES_HOST=localhost -e LUMINA_POSTGRES_PORT=5432 -e LUMINA_POSTGRES_USERNAME=lumina -e LUMINA_POSTGRES_PASSWORD=lumina_pw -e LUMINA_POSTGRES_DATABASE=lumina_config -e LUMINA_SERVER_PORT=8085 -e LUMINA_SERVER_ADDR=0.0.0.0 lumina-server:dev", 34 34 ] 35 35 ··· 68 68 "podman container rm lumina-server-sqlite lumina-redis 2>/dev/null || true", 69 69 "podman pod rm lumina-sqlite-pod 2>/dev/null || true", 70 70 # Create the pod 71 - "podman pod create --name lumina-sqlite-pod -p 8085:8085 -p 6379:6379 -p 8081:8081 -p 8083:8080", 71 + "podman pod create --name lumina-sqlite-pod -p 8085:8085 -p 6379:6379 -p 8081:8001 -p 8083:8080", 72 72 # Pre-run the redis commander and sqlite-web containers so they are available immediately 73 - "podman run -d --replace --name lumina-redis-commander --pod lumina-sqlite-pod -e REDIS_HOSTS=local:lumina-redis:6379 rediscommander/redis-commander:latest", 73 + "podman run -d --replace --name lumina-redisinsight --pod lumina-sqlite-pod redislabs/redisinsight:latest", 74 + "podman run -d --replace --name lumina-redisinsight --pod lumina-sqlite-pod -e RI_APP_PORT=8081 -e RI_APP_HOST=0.0.0.0 -e RI_REDIS_HOST=lumina-redis -e RI_REDIS_PORT=6379 redislabs/redisinsight:latest", 74 75 "podman run -d --replace --name lumina-sqlite-web --pod lumina-sqlite-pod -e SQLITE_DATABASE=/app/data/instance.sqlite -v ./data/:/app/data/ coleifer/sqlite-web:latest", 75 76 # Build and run 76 - "podman build -f Dockerfile.build -t lumina-server:dev .", 77 77 "podman run -d --replace --name lumina-redis -v ./data/redis:/data --pod lumina-sqlite-pod redis", 78 - "echo Redis Commander on http://127.0.0.1:8081, SQLite Web on http://127.0.0.1:8083", 78 + "podman build -f Dockerfile.build -t lumina-server:dev .", 79 + "echo RedisInsight on http://127.0.0.1:8081, SQLite Web on http://127.0.0.1:8083", 79 80 "podman run --name lumina-server-sqlite --pod lumina-sqlite-pod -e LUMINA_DB_TYPE=sqlite -e LUMINA_SQLITE_FILE=data/instance.sqlite -e LUMINA_SERVER_PORT=8085 -e LUMINA_SERVER_ADDR=0.0.0.0 -v ./data/:/app/data/:Z lumina-server:dev", 80 81 ] 81 82