Projekt

Obecné

Profil

Stáhnout (417 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 9832694f Stanislav Král
version: '3.7'
2
3
networks:
4
    web:
5
6 fc73f187 Stanislav Král
services:
7 9832694f Stanislav Král
    nginx:
8
        restart: unless-stopped
9 fc73f187 Stanislav Král
        build:
10
            context: .
11 9832694f Stanislav Král
            dockerfile: docker/nginx/Dockerfile
12
        networks:
13
            - web
14 fc73f187 Stanislav Král
        ports:
15 9832694f Stanislav Král
            - 80:80
16
    gunicorn:
17
        restart: unless-stopped
18
        build:
19
            context: .
20
            dockerfile: docker/gunicorn/Dockerfile
21
        networks:
22
            - web