-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
63 lines (59 loc) · 1.25 KB
/
Copy pathdocker-compose.yml
File metadata and controls
63 lines (59 loc) · 1.25 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: folhinha
services:
jsfolhinha:
container_name: folhinha-bot
build:
context: .
dockerfile: Dockerfile
env_file:
- .env
environment:
- TZ=Europe/Lisbon
volumes:
- .:/app
- /app/node_modules
- /var/run/docker.sock:/var/run/docker.sock
ports:
- "3323:3323"
depends_on:
- twitchclipper
- cobalt
networks:
- app-network
- folhinha-network
restart: unless-stopped
twitchclipper:
container_name: twitch-clipper
build:
context: ./apps/twitchClipper
dockerfile: Dockerfile
environment:
- TZ=Europe/Lisbon
volumes:
- ./apps/twitchClipper/clips:/app/clips
- ./apps/twitchClipper/previews:/app/previews
ports:
- "8989:8989"
networks:
- app-network
restart: unless-stopped
cobalt:
container_name: cobalt
image: ghcr.io/imputnet/cobalt:11
environment:
- API_URL=http://cobalt:9000
- COBALT_API_KEY=folhinhacobalt123
- TZ=Europe/Lisbon
ports:
- "9000:9000"
networks:
- app-network
read_only: true
init: true
restart: unless-stopped
networks:
app-network:
driver: bridge
folhinha-network:
external: true
name: folhinha-network