RustRover cargo-generate template: Axum + Vue 3 + TypeScript + Tailwind + sqlx
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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:
|