manage lewis with nix
move docker swarm ansible to this repo move thecloud ansible to this repo support data disks in terraform
This commit is contained in:
parent
d7ef46b642
commit
111bf68a0a
92 changed files with 2730 additions and 26 deletions
|
@ -0,0 +1,24 @@
|
|||
# vi: ft=yaml
|
||||
version: "3.7"
|
||||
|
||||
networks:
|
||||
traefik:
|
||||
external: true
|
||||
|
||||
services:
|
||||
inbucket:
|
||||
image: inbucket/inbucket
|
||||
networks:
|
||||
- traefik
|
||||
ports:
|
||||
- 2500:2500
|
||||
deploy:
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.inbucket.entrypoints=localsecure
|
||||
- traefik.http.routers.inbucket.rule=Host(`inbucket.geokunis2.nl`)
|
||||
- traefik.http.routers.inbucket.service=inbucket
|
||||
- traefik.http.routers.inbucket.tls=true
|
||||
- traefik.http.routers.inbucket.tls.certresolver=letsencrypt
|
||||
- traefik.docker.network=traefik
|
||||
- traefik.http.services.inbucket.loadbalancer.server.port=9000
|
Reference in a new issue