-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
38 lines (38 loc) · 1.14 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
version: '3'
services:
openresty:
image: openresty/openresty:latest
ports:
- 9191:9191
volumes:
- ./openresty/libs:/etc/nginx/lua/resty
- ./openresty/pages:/etc/nginx/lua/pages
- ./public:/var/www/public
- ./nginx.conf:/usr/local/openresty/nginx/conf/nginx.conf
logging:
driver: "json-file"
options:
max-size: "1k"
redis:
image: redis:4.0
# важно запускать редис с notify-keyspace-events KEgx, чтобы он уведомлял об истечении действия ключей
command: "redis-server --notify-keyspace-events KEgx"
volumes:
- redis:/data
logging:
driver: "json-file"
options:
max-size: "1k"
# программа на го увеличивает счетчик свободных мест, когда ключ пользователя удаляется из-за бедействия
watcher:
image: golang:1.13
volumes:
- ./app:/src
command: "go run -mod=vendor main.go"
working_dir: /src
logging:
driver: "json-file"
options:
max-size: "1k"
volumes:
redis: