aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yaml
blob: ac05a0f1064a567e575f5c68903c5725de6b6d38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
version: "3.7"
services:
  web:
    image: web
    build:
      context: ./
    networks:
      - webnet
    restart: unless-stopped
    ports:
      - "9000:9000"
    cap_drop:
      - ALL
networks:
  webnet: