forked from liquity/dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
40 lines (37 loc) · 1.1 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
version: "2.1"
services:
swag:
image: linuxserver/swag
container_name: swag
cap_add:
- NET_ADMIN
environment:
- PUID=1000 # see https://github.com/linuxserver/docker-swag#user--group-identifiers
- PGID=1011 # see https://github.com/linuxserver/docker-swag#user--group-identifiers
- TZ=Europe/Berlin # customize this
- URL=example.com # customize this
- SUBDOMAINS=liquity # customize this
- VALIDATION=http
- ONLY_SUBDOMAINS=true
volumes:
- ./config:/config
ports:
- 443:443
- 80:80
restart: unless-stopped
watchtower:
image: containrrr/watchtower
container_name: watchtower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
command: --interval 1000 --cleanup --label-enable
restart: unless-stopped
dev-frontend:
image: liquity/dev-frontend:latest
container_name: liquity-dev-frontend
environment:
- FRONTEND_TAG= # customize this
- INFURA_API_KEY= # (optional) customize this
restart: unless-stopped
labels:
com.centurylinklabs.watchtower.enable: "true"