aboutsummaryrefslogblamecommitdiffstats
path: root/terminaldweller.com/cargo/docker-compose.yaml
blob: ef2e1b8f4c73eaed8929f3d9f15a63418c58cf7e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12



                
          






                           
                                             
                                 

             

           
version: "3"
services:
  nginx:
    image: nginx
    build:
      context: .
    networks:
      - cargonet
    ports:
      - "7777:8080"
    restart: unless-stopped
    volumes:
      - ./nginx.conf:/etc/nginx/nginx.conf:ro
      - /home/ubuntu/cargo:/cargo
    cap_drop:
      - ALL
networks:
  cargonet: