mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
15 lines
368 B
YAML
15 lines
368 B
YAML
version: "3.8"
|
|
services:
|
|
nostr-rs-relay:
|
|
image: scsibug/nostr-rs-relay
|
|
command: "./nostr-rs-relay --config etc/config.toml --db var"
|
|
ports:
|
|
- "8008:8008"
|
|
volumes:
|
|
- ./data/etc:/usr/src/app/etc
|
|
- ./data/var:/usr/src/app/var
|
|
environment:
|
|
- RUST_LOG=info,nostr_rs_relay=info
|
|
privileged: true
|
|
restart: unless-stopped
|