aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
blob: 1d68251cce9468a35974dcc3fee1fd2ca3a51dfa (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
version: '3'

services:
    sytc:
        build:
            context: .
            dockerfile: Dockerfile
        image: r.vm.gl/smallytchannelbot
        networks:
            - db-network
        external_links:
            - mariadb:mysql
        volumes:
            - ./config.json:/app/config.json
    cron:
        build:
            context: .
            dockerfile: ./onceaday/Dockerfile
        image: r.vm.gl/smallytchannelbotoad
        networks:
            - db-network
        external_links:
            - mariadb:mysql
        volumes:
            - ./config.json:/app/config.json

networks:
    db-network:
        external:
            name: mariadb