aboutsummaryrefslogtreecommitdiffstats
path: root/terminaldweller.com/cargo/docker-compose.yaml
blob: f1f990e91f9a726f3df2aebf1c09b6975a0acafe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
version: "3"
services:
  nginx:
    image: nginx
    build:
      context: .
    networks:
      - cargonet
    ports:
      - "7777:8080"
    restart: unless-stopped
    volumes:
      - ./nginx.conf:/etc/nginx.conf:ro
      - /home/ubuntu/cargo:/cargo
networks:
  cargonet: