aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
blob: 1e13c9e205e11f8e9b715b14a057c1b332d6aa33 (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: jwansek/smallytchannelbot
        networks:
            - db-network
        external_links:
            - mariadb:mysql
    cron:
        build:
            context: .
            dockerfile: ./onceaday/Dockerfile
        image: jwansek/smallytchannelbotoad
        networks:
            - db-network
        external_links:
            - mariadb:mysql

networks:
    db-network:
        external:
            name: mariadb