-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.dev.yml
79 lines (74 loc) · 1.52 KB
/
docker-compose.dev.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# project_name=podcloud
version: "3.4"
services:
horizon:
image: "podcloud-horizon"
build:
context: .
target: runner
volumes:
- ./.mix:/var/run/.mix
- ./downloads:/downloads
- ./tmp:/tmp
- .:/app
networks:
- default
- podcloud
ports:
- 4000
env_file:
- ./.env.development.local
environment:
MIX_HOME: /var/run/.mix
nginx:
image: nginx:1.19
volumes:
- ./nginx.dev.conf:/etc/nginx/nginx.conf
- ./downloads:/private/downloads
networks:
- default
- podcloud
- traefik
labels:
traefik.frontend.rule: "Host:warp-horizon.gicma.dev.test,horizon.gicma.dev.test"
traefik.frontend.priority: 999999
webpack:
image: node:12
volumes:
- .:/app
networks:
- default
- podcloud
working_dir: /app
labels:
traefik.enabled: false
command: ["npm", "run", "watch"]
# storybook:
# image: node:12
# volumes:
# - .:/app
# networks:
# - default
# - traefik
# - podcloud
# working_dir: /app
# labels:
# traefik.frontend.rule: "HostRegexp:sb.horizon.gicma.dev.test"
# traefik.frontend.priority: 999999
# traefik.port: 6006
# command: ["npm", "run", "storybook"]
fake_s3:
image: camjackson/fake-s3
ports:
- "0.0.0.0:4569:4569"
networks:
- traefik
- podcloud
- default
volumes:
- /fakes3_root
networks:
podcloud:
external: true
traefik:
external: true