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

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

networks:
    db-network:
        external:
            name: mariadb