-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
56 lines (50 loc) · 1.06 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
44
45
46
47
48
49
50
51
52
53
54
55
56
version: "3"
services:
playwright:
tty: true
image: mcr.microsoft.com/playwright:v1.40.0-jammy
command: /bin/bash
network_mode: host
volumes:
- ${PWD}:/work/
working_dir: /work/
container_name: playwright
nuxt:
build: .
container_name: daim-website
# restart: unless-stopped
ports:
- "3000:3000"
- "5678:5678"
command: yarn dev
volumes:
- ./:/src
networks:
- daim
tunnel:
container_name: cloudflared-tunnel
image: cloudflare/cloudflared:2023.3.1
# restart: unless-stopped
command: tunnel
networks:
- daim
depends_on:
- nuxt
environment:
TUNNEL_URL: http://nuxt:3000
imgproxy:
image: darthsim/imgproxy:latest
# restart: unless-stopped
ports:
- 8080:8080
environment:
- IMGPROXY_ENABLE_CLIENT_HINTS=true
- IMGPROXY_ALLOW_ORIGIN=*
- IMGPROXY_MAX_SRC_RESOLUTION=50
- IMGPROXY_KEY=${IMGPROXY_KEY}
- IMGPROXY_SALT=${IMGPROXY_SALT}
networks:
- daim
networks:
daim:
driver: bridge