blob: 50eafabc80ec75658b0baf8408da1197b90f50ef (
plain) (
tree)
|
|
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
networks:
cargonet:
|