mirror of
https://github.com/csd4ni3l/loginween.git
synced 2025-11-05 05:58:10 +01:00
18 lines
365 B
YAML
18 lines
365 B
YAML
services:
|
|
loginween:
|
|
image: csd4ni3lofficial/loginween:latest
|
|
build: .
|
|
container_name: loginween
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
HOST: "0.0.0.0"
|
|
PORT: 8080
|
|
DB_FILE: "data.db"
|
|
APP_KEY: "changeme"
|
|
DEBUG_MODE: false
|
|
GRID_SIZE: 15
|
|
volumes:
|
|
- ./data.db:/app/data.db
|
|
restart: unless-stopped
|