-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
266 additions
and
32 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
version: '3.2' | ||
|
||
services: | ||
db: | ||
image: redis:latest | ||
restart: always | ||
volumes: | ||
- rediscache:/data | ||
environment: | ||
- MYSQL_ROOT_PASSWORD= | ||
- MARIADB_AUTO_UPGRADE=1 | ||
- MARIADB_DISABLE_UPGRADE_BACKUP=1 | ||
ports: | ||
- '6379:6379' | ||
|
||
web: | ||
image: nginx:alpine | ||
restart: always | ||
environment: | ||
MARIADB_ROOT_PASSWORD: "ganzgeheim" | ||
MARIADB_PASSWORD: "geheim" | ||
MARIADB_USER: "testuser" | ||
MARIADB_DATABASE: "testdb" | ||
command: > | ||
/bin/bash -c "whoami | ||
&& ls / ls -al /var/" | ||
volumes: | ||
- volumenginx:/var/www/html:z,ro | ||
ports: | ||
- 8080:80 | ||
- "8081:80" # just for testing duplicate port setup | ||
- 8080:443 | ||
|
||
volumes: | ||
rediscache: | ||
volumenginx: |
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,36 +1,224 @@ | ||
version: '3.2' | ||
--- | ||
# Example file from: https://github.com/FerretDB/FerretDB/blob/main/docker-compose.yml | ||
|
||
services: | ||
db: | ||
image: redis:latest | ||
restart: always | ||
postgres: | ||
build: | ||
context: ./build/deps | ||
dockerfile: ${POSTGRES_DOCKERFILE:-postgres}.Dockerfile | ||
container_name: ferretdb_postgres | ||
command: > | ||
postgres | ||
-c log_min_duration_statement=1000ms | ||
-c log_min_error_statement=WARNING | ||
-c log_min_messages=WARNING | ||
-c max_connections=400 | ||
ports: | ||
- 5432:5432 | ||
extra_hosts: | ||
- "host.docker.internal:host-gateway" | ||
environment: | ||
# UTC−03:30/−02:30. Set to catch timezone problems. | ||
- TZ=America/St_Johns | ||
- POSTGRES_USER=username | ||
- POSTGRES_PASSWORD=password | ||
- POSTGRES_HOST_AUTH_METHOD=trust | ||
- POSTGRES_DB=ferretdb | ||
|
||
postgres_secured: | ||
build: | ||
context: ./build/deps | ||
dockerfile: postgres.Dockerfile | ||
container_name: ferretdb_postgres_secured | ||
command: > | ||
postgres | ||
-c log_min_duration_statement=1000ms | ||
-c log_min_error_statement=WARNING | ||
-c log_min_messages=WARNING | ||
-c max_connections=400 | ||
ports: | ||
- 5433:5432 | ||
extra_hosts: | ||
- "host.docker.internal:host-gateway" | ||
environment: | ||
# UTC−03:30/−02:30. Set to catch timezone problems. | ||
- TZ=America/St_Johns | ||
- POSTGRES_USER=username | ||
- POSTGRES_PASSWORD=password | ||
- POSTGRES_DB=ferretdb | ||
|
||
mysql: | ||
build: | ||
context: ./build/deps | ||
dockerfile: mysql.Dockerfile | ||
container_name: ferretdb_mysql | ||
command: | ||
- --slow_query_log=1 | ||
- --long_query_time=1 | ||
- --log_error_verbosity=2 | ||
- --max_connections=200 | ||
ports: | ||
- 3306:3306 | ||
extra_hosts: | ||
- "host.docker.internal:host-gateway" | ||
environment: | ||
# UTC−03:30/−02:30. Set to catch timezone problems. | ||
- TZ=America/St_Johns | ||
- MYSQL_ROOT_PASSWORD=password | ||
- MYSQL_USER=username | ||
- MYSQL_PASSWORD=password | ||
- MYSQL_DATABASE=ferretdb | ||
|
||
mongodb: | ||
build: | ||
context: ./build/deps | ||
dockerfile: mongo.Dockerfile | ||
container_name: ferretdb_mongodb | ||
command: --config /etc/mongodb.conf | ||
ports: | ||
- 47017:47017 | ||
extra_hosts: | ||
- "host.docker.internal:host-gateway" | ||
environment: | ||
# Always UTC+05:45. Set to catch timezone problems. | ||
- TZ=Asia/Kathmandu | ||
volumes: | ||
- rediscache:/data | ||
- ./build/certs:/etc/certs | ||
- ./build/mongodb.conf:/etc/mongodb.conf | ||
|
||
mongodb_secured: | ||
build: | ||
context: ./build/deps | ||
dockerfile: mongo.Dockerfile | ||
container_name: ferretdb_mongodb_secured | ||
command: --config /etc/mongodb.conf | ||
ports: | ||
- 47018:47018 | ||
extra_hosts: | ||
- "host.docker.internal:host-gateway" | ||
environment: | ||
# Always UTC+05:45. Set to catch timezone problems. | ||
- TZ=Asia/Kathmandu | ||
- MONGO_INITDB_ROOT_USERNAME=username | ||
- MONGO_INITDB_ROOT_PASSWORD=password | ||
volumes: | ||
- ./build/certs:/etc/certs | ||
- ./build/mongodb_secured.conf:/etc/mongodb.conf | ||
|
||
# for test scripts | ||
legacy-mongo-shell: | ||
build: | ||
context: ./build/deps | ||
dockerfile: legacy-mongo-shell.Dockerfile | ||
container_name: ferretdb_legacy-mongo-shell | ||
extra_hosts: | ||
- "host.docker.internal:host-gateway" | ||
environment: | ||
- MYSQL_ROOT_PASSWORD= | ||
- MARIADB_AUTO_UPGRADE=1 | ||
- MARIADB_DISABLE_UPGRADE_BACKUP=1 | ||
# Always UTC+05:45. Set to catch timezone problems. | ||
- TZ=Asia/Kathmandu | ||
volumes: | ||
- ./build/certs:/etc/certs | ||
- ./build/legacy-mongo-shell/test.js:/legacy-mongo-shell/test.js | ||
|
||
jaeger: | ||
build: | ||
context: ./build/deps | ||
dockerfile: jaeger.Dockerfile | ||
container_name: ferretdb_jaeger | ||
environment: | ||
- COLLECTOR_OTLP_ENABLED=true | ||
ports: | ||
- '6379:6379' | ||
- 4318:4318 # OTLP over HTTP | ||
- 6831:6831/udp # Compact Thrift from BuildKit | ||
- 16686:16686 # UI on http://127.0.0.1:16686/ | ||
|
||
trivy: | ||
build: | ||
context: ./build/deps | ||
dockerfile: trivy.Dockerfile | ||
container_name: ferretdb_trivy | ||
volumes: | ||
- .:/workdir | ||
|
||
web: | ||
image: nginx:alpine | ||
restart: always | ||
# for YAML files | ||
prettier: | ||
build: | ||
context: ./build/deps | ||
dockerfile: ferretdb-prettier.Dockerfile | ||
container_name: ferretdb_ferretdb-prettier | ||
volumes: | ||
- .:/workdir | ||
|
||
# for documentation | ||
textlint: | ||
build: | ||
context: ./build/deps | ||
dockerfile: ferretdb-textlint.Dockerfile | ||
container_name: ferretdb_ferretdb-textlint | ||
volumes: | ||
- .:/workdir | ||
markdownlint: | ||
build: | ||
context: ./build/deps | ||
dockerfile: markdownlint.Dockerfile | ||
container_name: ferretdb_markdownlint | ||
volumes: | ||
- .:/workdir | ||
wrangler: | ||
build: | ||
context: ./build/deps | ||
dockerfile: ferretdb-wrangler.Dockerfile | ||
container_name: ferretdb_ferretdb-wrangler | ||
ports: | ||
- 8976:8976 # simplifies authentication for testing | ||
environment: | ||
MARIADB_ROOT_PASSWORD: "ganzgeheim" | ||
MARIADB_PASSWORD: "geheim" | ||
MARIADB_USER: "testuser" | ||
MARIADB_DATABASE: "testdb" | ||
command: > | ||
/bin/bash -c "whoami | ||
&& ls / ls -al /var/" | ||
- CLOUDFLARE_ACCOUNT_ID | ||
- CLOUDFLARE_API_TOKEN | ||
- WRANGLER_SEND_METRICS=false | ||
# - WRANGLER_LOG=debug # TODO https://github.com/cloudflare/workers-sdk/issues/3073 | ||
volumes: | ||
- .:/workdir # mount everything for wrangler to pick up branch name, commit hash, etc from git | ||
docusaurus-docs: | ||
build: | ||
context: ./build/deps | ||
dockerfile: docusaurus-docs.Dockerfile | ||
container_name: ferretdb_docusaurus-docs | ||
ports: | ||
- 3000:3000 | ||
volumes: | ||
- volumenginx:/var/www/html:z,ro | ||
# shared with blog | ||
- ./website/babel.config.js:/workdir/docusaurus-docs/babel.config.js:ro | ||
- ./website/sidebars.js:/workdir/docusaurus-docs/sidebars.js:ro | ||
- ./website/src:/workdir/docusaurus-docs/src:ro | ||
- ./website/static:/workdir/docusaurus-docs/static:ro | ||
- ./website/build:/workdir/docusaurus-docs/build:rw | ||
|
||
# docs sources | ||
- ./website/docs:/workdir/docusaurus-docs/docs:rw | ||
- ./website/docusaurus.config.js:/workdir/docusaurus-docs/docusaurus.config.js:ro | ||
- ./website/versioned_docs:/workdir/docusaurus-docs/versioned_docs:rw | ||
- ./website/versioned_sidebars:/workdir/docusaurus-docs/versioned_sidebars:rw | ||
- ./website/versions.json:/workdir/docusaurus-docs/versions.json:rw | ||
|
||
docusaurus-blog: | ||
build: | ||
context: ./build/deps | ||
dockerfile: docusaurus-docs.Dockerfile | ||
container_name: ferretdb_docusaurus-blog | ||
ports: | ||
- 8080:80 | ||
- "8081:80" # just for testing duplicate port setup | ||
- 8080:443 | ||
- 3001:3001 | ||
volumes: | ||
# shared with docs | ||
- ./website/babel.config.js:/workdir/docusaurus-docs/babel.config.js:ro | ||
- ./website/sidebars.js:/workdir/docusaurus-docs/sidebars.js:ro | ||
- ./website/src:/workdir/docusaurus-docs/src:ro | ||
- ./website/static:/workdir/docusaurus-docs/static:ro | ||
- ./website/build:/workdir/docusaurus-docs/build:rw | ||
|
||
# blog sources | ||
- ./website/blog:/workdir/docusaurus-docs/blog:ro | ||
- ./website/docusaurus.config-blog.js:/workdir/docusaurus-docs/docusaurus.config.js:ro | ||
|
||
volumes: | ||
rediscache: | ||
volumenginx: | ||
networks: | ||
default: | ||
name: ferretdb |