-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
55 lines (55 loc) · 1.08 KB
/
docker-compose.yml
File metadata and controls
55 lines (55 loc) · 1.08 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
services:
frontend:
container_name: orchid-frontend
build:
context: ./client
dockerfile: Dockerfile
restart: always
ports:
- "5173:5173"
depends_on:
- backend
env_file:
- ./client/.env
networks:
- public
- internal
backend:
container_name: orchid-backend
build:
context: ./server
dockerfile: Dockerfile
restart: always
ports:
- "5000:5000"
volumes:
- ./server/instance:/app/instance
- image_cache:/app/cache
env_file:
- ./server/.env
networks:
- public
- internal
rembg:
container_name: orchid-rembg
build:
context: ./server/rembg
dockerfile: Dockerfile
restart: always
networks:
- internal
selenium-chrome:
container_name: orchid-selenium
image: selenium/standalone-chrome:131.0
shm_size: "2gb"
restart: always
networks:
- internal
volumes:
uploads:
image_cache:
driver: local
networks:
public:
internal:
internal: true