File: docker-compose.yml

package info (click to toggle)
receptor 1.5.5-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,772 kB
  • sloc: python: 1,643; makefile: 305; sh: 174
file content (31 lines) | stat: -rw-r--r-- 602 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
version: "3.9"
services:
  arceus:
    build: ./build/receptor/
    command: receptor -c /configs/arceus.yaml
    volumes:
      - ./configs/:/configs
    networks:
      - receptor-network

  celebi:
    build: ./build/receptor/
    command: receptor -c /configs/celebi.yaml
    volumes:
      - ./configs/:/configs
      - ./socks/:/socks
    networks:
      - receptor-network

  receptorctl:
    build: ./build/receptorctl/
    volumes:
      - ./socks/:/socks
    environment:
      RECEPTORCTL_SOCKET: /socks/celebi.sock
    networks:
      - random

networks:
  receptor-network: {}
  random: {}