This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Pull image | |
| $docker image pull mcp/postgres | |
| Using default tag: latest | |
| latest: Pulling from mcp/postgres | |
| 6e771e15690e: Already exists | |
| 6943333fe3c9: Downloading 23.82MB/49.62MB | |
| 19f059763ac0: Download complete | |
| 422fec2897b5: Download complete | |
| 3beeba27d5a1: Download complete |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $git clone https://github.com/redis/mcp-redis.git | |
| $cd mcp-redis | |
| $docker image build -t mcp-redis . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 1. ติดตั้ง | |
| $pip install robotframework-dashboard | |
| # 2. Run test | |
| $robot demo.robot | |
| # 3. Generate report | |
| $robotdashboard -o output.xml | |
| ====================================================================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unstable.api.versions.enable=true | |
| group.coordinator.rebalance.protocols=classic,consumer,share |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Tech Stack: | |
| Frontend: React.js | |
| Frontend testing: Playwright | |
| Backend: Node.js with Express.js | |
| Backend testing: Jest, supertest | |
| Database: Postgresql with pg library | |
| Version Control: Git | |
| Deployment: Docker |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $docker compose up -d | |
| $docker compose ps | |
| NAME IMAGE COMMAND SERVICE CREATED STATUS PORTS | |
| genai-toolbox-db-1 postgres "docker-entrypoint.s…" db 27 minutes ago Up 27 minutes (healthy) 0.0.0.0:5432->5432/tcp | |
| genai-toolbox-toolbox-1 us-central1-docker.pkg.dev/database-toolbox/toolbox/toolbox:latest "/toolbox toolbox --…" toolbox 27 minutes ago Up 27 minutes 0.0.0.0:5000->5000/tcp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $git clone https://github.com/grafana/k6-studio.git | |
| $cd k6-studio | |
| $npm install | |
| $npm start |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 1. Create table | |
| CREATE TABLE orders ( | |
| id SERIAL PRIMARY KEY, | |
| customer_id INT NOT NULL, | |
| order_date DATE NOT NULL, | |
| amount DECIMAL(10,2) | |
| ); | |
| // 2. Generate test data (100,000 records) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://www.keycloak.org/observability/health | |
| services: | |
| keycloak: | |
| image: quay.io/keycloak/keycloak:26.2 | |
| command: | |
| - start-dev | |
| - --import-realm | |
| environment: | |
| KEYCLOAK_ADMIN: admin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $docker compose up -d | |
| $docker compose ps | |
| NAME IMAGE COMMAND SERVICE CREATED STATUS PORTS | |
| n8n n8nio/n8n "tini -- /docker-ent…" n8n 15 minutes ago Up 15 minutes 0.0.0.0:5678->5678/tcp |