RustRover cargo-generate template: Axum + Vue 3 + TypeScript + Tailwind + sqlx
Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- services:
- postgres:
- image: postgres:17-alpine
- environment:
- POSTGRES_USER: app
- POSTGRES_PASSWORD: app
- POSTGRES_DB: app
- ports:
- - "5432:5432"
- volumes:
- - rust_template_pg:/var/lib/postgresql/data
- healthcheck:
- test: ["CMD-SHELL", "pg_isready -U app -d app"]
- interval: 5s
- timeout: 5s
- retries: 10
-
- volumes:
- rust_template_pg:
|