mirror of
https://github.com/yanislav-igonin/micrach
synced 2024-12-22 14:22:33 +03:00
feat: add compose file for swarm
This commit is contained in:
parent
730dca0c5e
commit
f13316b7ff
41
docker-compose.yml
Normal file
41
docker-compose.yml
Normal file
@ -0,0 +1,41 @@
|
||||
version: "3.7"
|
||||
|
||||
services:
|
||||
app:
|
||||
image: ghcr.io/yanislav-igonin/micrach-go/micrach:latest
|
||||
networks:
|
||||
- web
|
||||
environment:
|
||||
ENV: release
|
||||
PORT: ${PORT}
|
||||
deploy:
|
||||
mode: global
|
||||
placement:
|
||||
constraints:
|
||||
- node.role == manager
|
||||
update_config:
|
||||
parallelism: 1
|
||||
delay: 10s
|
||||
restart_policy:
|
||||
condition: on-failure
|
||||
labels:
|
||||
traefik.enable: "true"
|
||||
traefik.docker.network: "web"
|
||||
|
||||
traefik.http.services.micrach.loadbalancer.server.port: "80"
|
||||
|
||||
traefik.http.middlewares.micrach-https-redirect.redirectscheme.scheme: "https"
|
||||
|
||||
traefik.http.routers.micrach.entrypoints: "http"
|
||||
traefik.http.routers.micrach.rule: "Host(`micrach.igonin.dev`)"
|
||||
traefik.http.routers.micrach.middlewares: "micrach-https-redirect"
|
||||
|
||||
traefik.http.routers.micrach-secure.entrypoints: "https"
|
||||
traefik.http.routers.micrach-secure.rule: "Host(`micrach.igonin.dev`)"
|
||||
traefik.http.routers.micrach-secure.tls: "true"
|
||||
traefik.http.routers.micrach-secure.service: "micrach"
|
||||
|
||||
networks:
|
||||
web:
|
||||
driver: overlay
|
||||
external: true
|
Loading…
Reference in New Issue
Block a user