How to use a remote Dockerfile
```graphql
services:
myservice:
build:
context: https://github.com/mccoy88f/OMG-Premium-TV.git
dockerfile: Dockerfile
image: myservice:latest
```
In this example, we are using a `Dockerfile` hosted on GitHub to build the image for the `myservice` service.
We tell Docker Compose to use the `Dockerfile` in the root of the repository at `https://github.com/mccoy88f/OMG-Premium-TV.git`
to build the image for the service and then name the image `myservice:latest`.
:::
- `container_name`: The name to use for the container.
- This is optional, and if not specified, Docker will generate a name for you using the format `