-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
43 lines (38 loc) · 1 KB
/
docker-compose.yml
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
version: '3'
services:
autogenstudio-ui:
build:
context: autogen
command: ui --host 0.0.0.0 --port 8081 --appdir /app_data
ports:
- 8081:8081
volumes:
- ./autogen/app_data:/app_data
autogenstudio-server:
build:
context: autogen
command: serve --host 0.0.0.0 --port 8082 --docs --workflow /workflows/<workflow_file_name>.json
env_file:
- ./autogen/app_data/.env
ports:
- 8082:8082
volumes:
- ./autogen/workflows:/workflows
tutorial-ui:
build:
context: workshop
ports:
- 9090:9090
linkedin-app:
image: node:20-alpine
command: sh -c "cd /app && npm install && npm run start -- -H 0.0.0.0 -p 3001"
volumes:
- ./linkedin-post-generator/package.json:/app/package.json
- ./linkedin-post-generator/.next:/app/.next
- linkedin-post-generator-deps:/app/node_modules
env_file:
- ./linkedin-post-generator/.env.local
ports:
- 3001:3001
volumes:
linkedin-post-generator-deps: