33 lines
673 B
YAML
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
|