initialize XIVLauncher Remote OTP project with web interface and Docker support
This commit is contained in:
commit
6ce356ffed
8 changed files with 717 additions and 0 deletions
15
docker-compose.yml
Normal file
15
docker-compose.yml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
version: '3.8'
|
||||
|
||||
services:
|
||||
remote-otp:
|
||||
build: .
|
||||
container_name: xivlauncher-remote-otp
|
||||
ports:
|
||||
- "8080:8080"
|
||||
volumes:
|
||||
- ./data:/app/data
|
||||
environment:
|
||||
- WEB_PASSWORD=admin
|
||||
# Generate a secure key using: python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())"
|
||||
- ENCRYPTION_KEY=CHANGE_ME_TO_A_VALID_FERNET_KEY
|
||||
restart: unless-stopped
|
||||
Loading…
Add table
Add a link
Reference in a new issue