fix(2fauth): blank page, added env. vars (#2254)

close #2243
This commit is contained in:
JigSaw 2024-01-21 17:07:12 +01:00 committed by GitHub
parent a447ae801c
commit d2c4a74056
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 2 deletions

View File

@ -2,10 +2,12 @@
"$schema": "../schema.json", "$schema": "../schema.json",
"name": "2FAuth", "name": "2FAuth",
"port": 8235, "port": 8235,
"uid": 1000,
"gid": 1000,
"available": true, "available": true,
"exposable": true, "exposable": true,
"id": "2fauth", "id": "2fauth",
"tipi_version": 11, "tipi_version": 12,
"version": "5.0.3", "version": "5.0.3",
"categories": [ "categories": [
"security" "security"

View File

@ -1,4 +1,3 @@
version: "3.7"
services: services:
2fauth: 2fauth:
image: 2fauth/2fauth:5.0.3 image: 2fauth/2fauth:5.0.3
@ -7,6 +6,9 @@ services:
- ${APP_DATA_DIR}/data:/2fauth - ${APP_DATA_DIR}/data:/2fauth
ports: ports:
- ${APP_PORT}:8000 - ${APP_PORT}:8000
environment:
- ASSET_URL=https://${APP_DOMAIN}
- APP_URL=https://${APP_DOMAIN}
networks: networks:
- tipi_main_network - tipi_main_network
labels: labels: