mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
chore: fix local-stack edocker example
This commit is contained in:
parent
7a45f4e244
commit
6822ab9fe2
5 changed files with 7 additions and 5 deletions
|
@ -4,6 +4,9 @@ Verdaccio running with [Localstack](https://github.com/localstack/localstack) pr
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
> You might need to create bucket manually here
|
||||||
|
> aws --endpoint-url=http://localhost:4572 s3 mb s3://localstack.s3.plugin.test
|
||||||
|
|
||||||
```
|
```
|
||||||
docker-compose up --force-recreate --build --always-recreate-deps
|
docker-compose up --force-recreate --build --always-recreate-deps
|
||||||
```
|
```
|
||||||
|
|
|
@ -13,7 +13,6 @@ uplinks:
|
||||||
|
|
||||||
packages:
|
packages:
|
||||||
'@*/*':
|
'@*/*':
|
||||||
# scoped packages
|
|
||||||
access: $all
|
access: $all
|
||||||
publish: $all
|
publish: $all
|
||||||
proxy: npmjs
|
proxy: npmjs
|
||||||
|
|
|
@ -14,7 +14,7 @@ services:
|
||||||
links:
|
links:
|
||||||
- localstack-s3
|
- localstack-s3
|
||||||
localstack-s3:
|
localstack-s3:
|
||||||
image: localstack/localstack:latest
|
image: localstack/localstack:0.10.9
|
||||||
container_name: localstack-s3-1
|
container_name: localstack-s3-1
|
||||||
environment:
|
environment:
|
||||||
- DEBUG=0
|
- DEBUG=0
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
FROM python:2.7
|
FROM python:3.7-alpine
|
||||||
|
|
||||||
ENV AWS_ACCESS_KEY_ID='[something]'
|
ENV AWS_ACCESS_KEY_ID='[something]'
|
||||||
ENV AWS_SECRET_ACCESS_KEY='[something]'
|
ENV AWS_SECRET_ACCESS_KEY='[something]'
|
||||||
|
|
Loading…
Reference in a new issue