blob: deb7375e1fe7561bcf87c71b9997850d99a0b901 (
plain)
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
32
|
version: '3'
services:
sytc:
build:
context: .
dockerfile: Dockerfile
image: reg.reaweb.uk/smallytchannelbot
networks:
- db-network
external_links:
- mariadb:mysql
volumes:
- ./config.json:/app/config.json
cron:
build:
context: .
dockerfile: ./onceaday/Dockerfile
image: reg.reaweb.uk/smallytchannelbot_oad
networks:
- db-network
external_links:
- mariadb:mysql
depends_on:
- sytc
volumes:
- ./config.json:/app/config.json
networks:
db-network:
external:
name: mariadb
|