abra/deploy/abra-apps.cloud.autonomic.zone/compose.yml

39 lines
885 B
YAML
Raw Normal View History

2020-10-25 20:08:08 +00:00
---
version: "3.8"
services:
2021-04-02 13:44:24 +00:00
app:
2020-10-25 20:08:08 +00:00
image: "nginx:stable"
configs:
- source: abra_conf
target: /etc/nginx/conf.d/abra.conf
2021-04-02 13:44:24 +00:00
- source: abra_apps_json
target: /var/www/abra-apps/abra-apps.json
2020-10-25 20:08:08 +00:00
volumes:
- "public:/var/www/abra-apps"
2020-10-25 20:08:08 +00:00
networks:
- proxy
deploy:
update_config:
failure_action: rollback
order: start-first
labels:
- "traefik.enable=true"
- "traefik.http.services.abra-apps.loadbalancer.server.port=80"
2021-04-02 14:46:31 +00:00
- "traefik.http.routers.abra-apps.rule=Host(`abra-apps.cloud.autonomic.zone`)"
- "traefik.http.routers.abra-apps.entrypoints=web-secure"
- "traefik.http.routers.abra-apps.tls.certresolver=production"
2020-10-25 20:08:08 +00:00
configs:
2021-04-02 13:44:24 +00:00
abra_apps_json:
file: abra-apps.json
2020-10-25 20:08:08 +00:00
abra_conf:
file: nginx.conf
networks:
proxy:
external: true
volumes:
public: