Fix copy/pasta for apps json deployer

This commit is contained in:
decentral1se 2021-04-02 15:44:24 +02:00
parent 663ba19c8b
commit 3b9d6a7eb2
Signed by: decentral1se
GPG Key ID: 92DAD76BD9567B8A
2 changed files with 6 additions and 6 deletions

View File

@ -2,13 +2,13 @@
version: "3.8"
services:
abra_installer:
app:
image: "nginx:stable"
configs:
- source: abra_conf
target: /etc/nginx/conf.d/abra.conf
- source: abra_installer
target: /var/www/abra-apps/installer
- source: abra_apps_json
target: /var/www/abra-apps/abra-apps.json
volumes:
- "public:/var/www/abra-apps"
networks:
@ -25,8 +25,8 @@ services:
- "traefik.http.routers.abra-apps.tls.certresolver=production"
configs:
abra_installer:
file: installer
abra_apps_json:
file: abra-apps.json
abra_conf:
file: nginx.conf

View File

@ -5,6 +5,6 @@ server {
location / {
root /var/www/abra-apps;
add_header Content-Type application/json;
index installer;
index abra-apps.json;
}
}