-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (39 loc) · 880 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (39 loc) · 880 Bytes
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
services:
configurator:
container_name: ${PREFIX:-}configurator
build:
context: ./
dockerfile: docker/Dockerfile
labels:
- traefik.enable=true
- traefik.http.routers.${PREFIX:-}configurator.rule=Host(`${DOMAIN:-am32.ca}`)
- traefik.http.routers.${PREFIX:-}configurator.service=${PREFIX:-}configurator
- traefik.http.services.${PREFIX:-}configurator.loadbalancer.server.port=3000
pull_policy: build
env_file: stack.env
networks:
- proxy
- redis-net
redisinsight:
image: redis/redisinsight:latest
volumes:
- redisinsight:/data
networks:
- redis-net
cache:
image: redis:7
networks:
- redis-net
volumes:
- cache:/data
ports:
- 6379:6379
networks:
conf:
redis-net:
external: true
proxy:
external: true
volumes:
cache:
redisinsight: