mirror of
https://github.com/driftywinds/driftywinds.git
synced 2025-12-18 18:23:16 +00:00
22 lines
355 B
YAML
22 lines
355 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
ergo:
|
|
init: true
|
|
image: ghcr.io/ergochat/ergo:stable
|
|
ports:
|
|
- "6668:6667/tcp"
|
|
- "6698:6697/tcp"
|
|
volumes:
|
|
- ./data:/ircd
|
|
deploy:
|
|
placement:
|
|
constraints:
|
|
- "node.role == manager"
|
|
restart_policy:
|
|
condition: on-failure
|
|
replicas: 1
|
|
|
|
volumes:
|
|
data:
|