aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
blob: d8817617134d3b31d56ac6f29e7acc62cf668cd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
version: '3'
services:
    edaweb:
        build:
            context: .
            dockerfile: Dockerfile
        image: jwansek/edaweb
        volumes:
            - /media/ISOs/:/media/ISOs/
            - ./static/:/app/static/
            - ./edaweb.conf:/app/edaweb.conf
        ports:
            - "6969:6969"
        networks:
            - db-network
        external_links:
            - mariadb:mysql

networks:
    db-network:
        name: mariadb
        external: true