13 lines
221 B
YAML
13 lines
221 B
YAML
version: "3"
|
|
services:
|
|
chanbans:
|
|
build: .
|
|
ports:
|
|
- "127.0.0.1:8080:8080"
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- "./static:/app/static"
|
|
- "./bans.db:/app/bans.db"
|
|
restart: unless-stopped
|