-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1018 from parlemonde/VIL-580-Zoom-PDF
PDF zoom feature
- Loading branch information
Showing
6 changed files
with
71 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,35 @@ | ||
# services: | ||
# mysql: | ||
# image: mysql:8 | ||
# environment: | ||
# - MYSQL_ROOT_PASSWORD=my-secret-pw | ||
# healthcheck: | ||
# test: [ 'CMD', 'mysqladmin', 'ping', '-h', 'localhost' ] | ||
# timeout: 20s | ||
# retries: 10 | ||
# ports: | ||
# - '3306:3306' | ||
# - '33060:33060' | ||
# volumes: | ||
# - ./.mysql-data:/var/lib/mysql | ||
# minio: | ||
# image: minio/minio | ||
# ports: | ||
# - '9000:9000' | ||
# - '9090:9090' | ||
# environment: | ||
# - MINIO_ROOT_USER=minioadmin | ||
# - MINIO_ROOT_PASSWORD=minioadmin | ||
# - MINIO_ACCESS_KEY=minio | ||
# - MINIO_SECRET_KEY=minio123 | ||
# volumes: | ||
# - ./.minio-data:/data | ||
# command: server --console-address ":9090" /data | ||
services: | ||
mysql: | ||
image: mysql:8 | ||
environment: | ||
- MYSQL_ROOT_PASSWORD=my-secret-pw | ||
healthcheck: | ||
test: ['CMD', 'mysqladmin', 'ping', '-h', 'localhost'] | ||
timeout: 20s | ||
retries: 10 | ||
ports: | ||
- '3306:3306' | ||
- '33060:33060' | ||
volumes: | ||
- ./.mysql-data:/var/lib/mysql | ||
minio: | ||
image: minio/minio | ||
ports: | ||
- '9000:9000' | ||
- '9090:9090' | ||
environment: | ||
- MINIO_ROOT_USER=minioadmin | ||
- MINIO_ROOT_PASSWORD=minioadmin | ||
- MINIO_ACCESS_KEY=minio | ||
- MINIO_SECRET_KEY=minio123 | ||
volumes: | ||
- ./.minio-data:/data | ||
command: server --console-address ":9090" /data | ||
dynamodb: | ||
command: '-jar DynamoDBLocal.jar -sharedDb -dbPath ./data' | ||
image: 'amazon/dynamodb-local:latest' | ||
ports: | ||
- '8000:8000' | ||
volumes: | ||
- './.dynamodb:/home/dynamodblocal/data' | ||
working_dir: /home/dynamodblocal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters