diff options
Diffstat (limited to 'terminaldweller.com/cargo/docker-compose.yaml')
-rw-r--r-- | terminaldweller.com/cargo/docker-compose.yaml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/terminaldweller.com/cargo/docker-compose.yaml b/terminaldweller.com/cargo/docker-compose.yaml new file mode 100644 index 0000000..c8ca217 --- /dev/null +++ b/terminaldweller.com/cargo/docker-compose.yaml @@ -0,0 +1,15 @@ +version: "3" +services: + nginx: + image: nginx + context: . + networks: + - cargonet + ports: + - "7777:8080" + restart: unless-stopped + volumes: + - ./nginx.conf:/etc/nginx.conf:ro + - /home/ubuntu/cargo:/cargo +networks: + cargonet: |