this repo has no description
0
fork

Configure Feed

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

Resolve naming issues

+6 -4
+6 -4
mise/tasks/podman-tasks.toml
··· 17 17 "mkdir -p ./data/postgres", 18 18 # Clean up any existing pods/containers first 19 19 "podman pod stop lumina-postgres-pod 2>/dev/null || true", 20 + "podman pod stop lumina-sqlite-pod 2>/dev/null || true", 20 21 "podman pod rm lumina-postgres-pod 2>/dev/null || true", 21 22 "podman container rm lumina-server-postgres luminadb lumina-redis 2>/dev/null || true", 22 23 # Create the pod 23 24 "podman pod create --name lumina-postgres-pod -p 8085:8085 -p 5432:5432 -p 8081:8081 -p 8082:8080", 24 25 # Pre-run the redis commander and adminer containers so they are available immediately 25 - "podman run -d --name lumina-redis-commander --pod lumina-postgres-pod -e REDIS_HOSTS=local:lumina-redis:6379 rediscommander/redis-commander:latest", 26 - "podman run -d --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_DEFAULT_USER_NAME=lumina -e ADMINER_DEFAULT_PASSWORD=lumina_pw adminer:latest", 26 + "podman run -d --replace --name lumina-redis-commander --pod lumina-postgres-pod -e REDIS_HOSTS=local:lumina-redis:6379 rediscommander/redis-commander:latest", 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", 27 28 # Build and run 28 29 "podman build -f Dockerfile.build -t lumina-server:dev .", 29 30 "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", ··· 62 63 run = [ 63 64 "mkdir -p ./data/", 64 65 # Clean up any existing pods/containers first 66 + "podman pod stop lumina-postgres-pod 2>/dev/null || true", 65 67 "podman pod stop lumina-sqlite-pod 2>/dev/null || true", 66 68 "podman container rm lumina-server-sqlite lumina-redis 2>/dev/null || true", 67 69 "podman pod rm lumina-sqlite-pod 2>/dev/null || true", 68 70 # Create the pod 69 71 "podman pod create --name lumina-sqlite-pod -p 8085:8085 -p 6379:6379 -p 8081:8081 -p 8083:8080", 70 72 # Pre-run the redis commander and sqlite-web containers so they are available immediately 71 - "podman run -d --name lumina-redis-commander --pod lumina-sqlite-pod -e REDIS_HOSTS=local:lumina-redis:6379 rediscommander/redis-commander:latest", 72 - "podman run -d --name lumina-sqlite-web --pod lumina-sqlite-pod -e SQLITE_DATABASE=/app/data/instance.sqlite -v ./data/:/app/data/ coleifer/sqlite-web:latest", 73 + "podman run -d --replace --name lumina-redis-commander --pod lumina-sqlite-pod -e REDIS_HOSTS=local:lumina-redis:6379 rediscommander/redis-commander:latest", 74 + "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", 73 75 # Build and run 74 76 "podman build -f Dockerfile.build -t lumina-server:dev .", 75 77 "podman run -d --replace --name lumina-redis -v ./data/redis:/data --pod lumina-sqlite-pod redis",