blob: f1f990e91f9a726f3df2aebf1c09b6975a0acafe (
plain) (
tree)
|
|
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:
|