mirror of
https://github.com/csd4ni3l/loginween.git
synced 2026-01-01 04:23:48 +01:00
Add grid size to docker compose, fix docker run command using debug mode and add grid size to it as well
This commit is contained in:
@@ -17,7 +17,7 @@ Live Demo (coming soon!): https://loginween.csd4ni3l.hu
|
|||||||
- `python3 app.py`
|
- `python3 app.py`
|
||||||
|
|
||||||
## Docker CLI
|
## Docker CLI
|
||||||
- Run `docker run --name loginween -p 8080:8080 -e HOST=0.0.0.0 -e PORT=8080 -e DB_FILE=data.db -e APP_KEY=changeme -e DEBUG_MODE=true -v ./data.db:/app/data.db --restart unless-stopped csd4ni3lofficial/loginween:latest` and change the parameters
|
- Run `docker run --name loginween -p 8080:8080 -e HOST=0.0.0.0 -e PORT=8080 -e DB_FILE=data.db -e APP_KEY=changeme -e DEBUG_MODE=false -e GRID_SIZE=15 -v ./data.db:/app/data.db --restart unless-stopped csd4ni3lofficial/loginween:latest` and change the parameters
|
||||||
|
|
||||||
## Docker Compose
|
## Docker Compose
|
||||||
- Download the `docker-compose.yml` file from this repo and run `docker compose up -d` next to it.
|
- Download the `docker-compose.yml` file from this repo and run `docker compose up -d` next to it.
|
||||||
@@ -11,6 +11,7 @@ services:
|
|||||||
DB_FILE: "data.db"
|
DB_FILE: "data.db"
|
||||||
APP_KEY: "changeme"
|
APP_KEY: "changeme"
|
||||||
DEBUG_MODE: false
|
DEBUG_MODE: false
|
||||||
|
GRID_SIZE: 15
|
||||||
volumes:
|
volumes:
|
||||||
- ./data.db:/app/data.db
|
- ./data.db:/app/data.db
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|||||||
Reference in New Issue
Block a user