Files
loginween/docker-compose.yml

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