aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
blob: a752a0f15353de841bc7c72c328579f8430b81dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
version: '3'

services:
    cron:
        build:
            context: .
            dockerfile: cron_Dockerfile
        image: jwansek/power
        env_file:
            - ./db.env
        external_links:
            - mariadb:db
        networks:
            - db-network

networks:
    db-network:
            external:
                name: mariadb