-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpostwomen.yml
32 lines (30 loc) · 887 Bytes
/
postwomen.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
version: "3.7"
networks:
home_net:
external: true
services:
# Postwomen , API testing tool
postman:
container_name: postman
image: liyasthomas/postwoman:latest
restart: always
networks:
home_net:
ipv4_address: 192.168.0.82
ports:
- "3000:3000"
volumes:
- $USERDIR/postman:/app
environment:
- TZ=$TZ
labels:
- "traefik.enable=true"
## HTTP Routers
- "traefik.http.routers.postman-rtr.entrypoints=https"
- "traefik.http.routers.postman-rtr.rule=HostHeader(`post.$DOMAINNAME`)"
- "traefik.http.routers.postman-rtr.tls=true"
## Middlewares
- "traefik.http.routers.postman-rtr.middlewares=chain-authelia@file"
## HTTP Services
- "traefik.http.routers.postman-rtr.service=postman-svc"
- "traefik.http.services.postman-svc.loadbalancer.server.port=3000"