-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcompose.yml
More file actions
42 lines (39 loc) · 957 Bytes
/
compose.yml
File metadata and controls
42 lines (39 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
services:
# Alisten 服务
alisten:
image: ghcr.io/bihua-university/alisten:latest
container_name: alisten
volumes:
- ./config.json:/app/config.json:ro
restart: unless-stopped
environment:
- TZ=Asia/Shanghai
ports:
- "8080:8080"
networks:
- alisten-network
# Musiclet 工作服务
musiclet:
image: ghcr.io/bihua-university/alisten-musiclet:latest
container_name: alisten-musiclet
volumes:
- ./musiclet-config.json:/app/config.json:ro
restart: unless-stopped
environment:
- TZ=Asia/Shanghai
networks:
- alisten-network
# Musiclet-py 工作服务
musiclet-py:
image: musiclet-py:latest
container_name: alisten-musiclet-py
volumes:
- ./musiclet-config.json:/app/config.json:ro
restart: unless-stopped
environment:
- TZ=Asia/Shanghai
networks:
- alisten-network
networks:
alisten-network:
driver: bridge