-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
74 lines (69 loc) · 1.48 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
services:
app-bulk-price-manipulator:
image: ghcr.io/djkato/saleor-app-bulk-price-manipulator:1.0.1
restart: unless-stopped
stdin_open: true
env_file:
- docker-bulk-price-manipulator.env
networks:
- saleor-app-tier
depends_on:
- redis-apl
ports:
- 30003:3000
app-payment-gateway:
image: ghcr.io/djkato/saleor-app-simple-payment-gateway:0.1.2
tty: true
restart: unless-stopped
stdin_open: true
env_file:
- docker-gateway.env
networks:
- saleor-app-tier
depends_on:
- redis-apl
ports:
- 3001:3000
app-sitemap-generator:
tty: true
restart: unless-stopped
stdin_open: true
image: ghcr.io/djkato/saleor-app-sitemap-generator:1.0.1
env_file:
- docker-sitemap.env
networks:
- saleor-app-tier
depends_on:
- redis-apl
ports:
- 3002:3000
volumes:
- sitemaps:/sitemaps
redis-apl:
image: bitnami/redis:latest
environment:
- ALLOW_EMPTY_PASSWORD=yes
- DISABLE_COMMANDS=FLUSHDB,FLUSHALL,CONFIG
ports:
- 6380:6379
restart: unless-stopped
networks:
- saleor-app-tier
volumes:
- redis-apl:/bitnami/redis/data
volumes:
redis-apl:
driver: local
driver_opts:
type: none
device: ./temp/volumes/redis/
o: bind
sitemaps:
driver: local
driver_opts:
type: none
device: ./temp/docker-sitemaps/
o: bind
networks:
saleor-app-tier:
driver: bridge