Files
huike-back/htycompose/docker-compose.yml
T
weli 44c320d8fa chore add core rust project files and diesel migrations
Track required workspace crates, scripts, and historical diesel migrations so the repository contains the complete runnable backend baseline.

Made-with: Cursor
2026-04-23 17:20:01 +08:00

33 lines
673 B
YAML

version: "3.8"
services:
htymusic:
image: ghcr.io/alchemy-studio/htymusic
container_name: htymusic
tty: true
ports:
- "8010:8010"
environment:
WS_PORT: 3000
UC_PORT: 3001
depends_on:
- htyws
- htyuc
htyws:
image: ghcr.io/alchemy-studio/htyws
container_name: htyws
tty: true
ports:
- "3000:3000"
environment:
ROCKET_PORT: 3000
DATABASE_URL: postgres://htyws@mydb/htyws
htyuc:
image: ghcr.io/alchemy-studio/htyuc
container_name: htyuc
tty: true
ports:
- "3001:3001"
environment:
ROCKET_PORT: 3001
DATABASE_URL: postgres://htyuc@mydb/htyuc