mirror of
https://github.com/distribution/distribution
synced 2024-11-06 19:35:52 +01:00
Merge pull request #3872 from das7pad/patch-1
Use docker-compose spec v3 in nginx receipt
This commit is contained in:
commit
5cd209bd53
@ -168,23 +168,26 @@ Review the [requirements](index.md#requirements), then follow these steps.
|
|||||||
5. Create the compose file. Paste the following YAML into a new file called `docker-compose.yml`.
|
5. Create the compose file. Paste the following YAML into a new file called `docker-compose.yml`.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
nginx:
|
version: "3"
|
||||||
# Note : Only nginx:alpine supports bcrypt.
|
|
||||||
# If you don't need to use bcrypt, you can use a different tag.
|
|
||||||
# Ref. https://github.com/nginxinc/docker-nginx/issues/29
|
|
||||||
image: "nginx:alpine"
|
|
||||||
ports:
|
|
||||||
- 5043:443
|
|
||||||
links:
|
|
||||||
- registry:registry
|
|
||||||
volumes:
|
|
||||||
- ./auth:/etc/nginx/conf.d
|
|
||||||
- ./auth/nginx.conf:/etc/nginx/nginx.conf:ro
|
|
||||||
|
|
||||||
registry:
|
services:
|
||||||
image: registry:2
|
nginx:
|
||||||
volumes:
|
# Note : Only nginx:alpine supports bcrypt.
|
||||||
- ./data:/var/lib/registry
|
# If you don't need to use bcrypt, you can use a different tag.
|
||||||
|
# Ref. https://github.com/nginxinc/docker-nginx/issues/29
|
||||||
|
image: "nginx:alpine"
|
||||||
|
ports:
|
||||||
|
- 5043:443
|
||||||
|
depends_on:
|
||||||
|
- registry
|
||||||
|
volumes:
|
||||||
|
- ./auth:/etc/nginx/conf.d
|
||||||
|
- ./auth/nginx.conf:/etc/nginx/nginx.conf:ro
|
||||||
|
|
||||||
|
registry:
|
||||||
|
image: registry:2
|
||||||
|
volumes:
|
||||||
|
- ./data:/var/lib/registry
|
||||||
```
|
```
|
||||||
|
|
||||||
## Starting and stopping
|
## Starting and stopping
|
||||||
|
Loading…
Reference in New Issue
Block a user