1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-24 08:52:31 +02:00
dockerfiles/nostr-rs-relay/docker-compose.yml

15 lines
368 B
YAML
Raw Normal View History

2023-02-08 05:53:07 +02:00
version: "3.8"
services:
nostr-rs-relay:
image: scsibug/nostr-rs-relay
2023-03-01 11:25:12 +02:00
command: "./nostr-rs-relay --config etc/config.toml --db var"
2023-02-08 05:53:07 +02:00
ports:
2023-03-01 11:25:12 +02:00
- "8008:8008"
2023-02-08 05:53:07 +02:00
volumes:
2023-03-01 11:25:12 +02:00
- ./data/etc:/usr/src/app/etc
- ./data/var:/usr/src/app/var
2023-02-08 05:53:07 +02:00
environment:
- RUST_LOG=info,nostr_rs_relay=info
2023-03-01 11:25:12 +02:00
privileged: true
2023-02-08 05:53:07 +02:00
restart: unless-stopped