aboutsummaryrefslogblamecommitdiffstats
path: root/docker-compose-test.yaml
blob: 73981ef7c4587ef4bb4ec0e0e9ab9e6fb6f18739 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                   
version: "3.7"
services:
  web:
    image: web
    build:
      context: ./
    networks:
      - webnet
    ports:
      - "19009:9000"
    cap_drop:
      - ALL
    environment:
      - SERVER_DEPLOYMENT_TYPE=test
      - SERVER_LISTEN_PORT=9000
networks:
  webnet: