-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (37 loc) · 841 Bytes
/
docker-compose.yml
File metadata and controls
43 lines (37 loc) · 841 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
40
41
42
43
version: '3'
services:
traefik:
restart: always
network_mode: "host"
# The official v2 Traefik docker image
image: traefik:v2.5
# Enables the web UI and tells Traefik to listen to docker
#ports:
# - "80:80"
# - "443:443"
# - "8080:8080"
logging:
driver: "json-file"
options:
max-size: "100m"
volumes:
- ./traefik.yml:/etc/traefik/traefik.yml
- ./configs/:/configs/
- ./certs/:/certs/
rproxy:
restart: always
network_mode: "host"
image: rproxy:3.0.3
env_file:
- ./.env
build:
context: .
command: "ruby server.rb"
logging:
driver: "json-file"
options:
max-size: "100m"
volumes:
- ./configs/:/configs/
- ./certs/:/certs/
- ~/.config/gcloud:/root/.config/gcloud