-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.dev.yaml
54 lines (48 loc) · 1.06 KB
/
docker-compose.dev.yaml
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
version: "3.8"
services:
webserver:
restart: unless-stopped
image: did-auth-proxy-webserver
pull_policy: never
build:
context: nginx
ports:
- "127.0.0.1:8080:80"
networks:
dev-backend:
volumes:
- ./nginx/nginx.dev.conf:/opt/bitnami/nginx/conf/server_blocks/nginx.conf
extra_hosts:
- host.docker.internal:host-gateway
backend:
restart: unless-stopped
image: did-auth-proxy-backend
pull_policy: never
build:
context: backend-server
networks:
dev-backend:
redis:
image: bitnami/redis:latest
restart: unless-stopped
ports:
- '127.0.0.1:6379:6379'
environment:
- ALLOW_EMPTY_PASSWORD=yes
networks:
dev-backend:
volumes:
- dev-redis-data:/bitnami/redis/data
redis-commander:
image: rediscommander/redis-commander:latest
restart: unless-stopped
ports:
- "127.0.0.1:8081:8081"
environment:
- REDIS_HOSTS=redis:redis:6379
networks:
dev-backend:
volumes:
dev-redis-data:
networks:
dev-backend: