mirror of
https://github.com/bitnami/containers.git
synced 2026-02-16 02:07:25 +08:00
3.3.0-debian-11-r1 release
This commit is contained in:
committed by
Bitnami Containers
parent
209d92f713
commit
d3e325b0ca
@@ -1,6 +1,40 @@
|
||||
version: '2'
|
||||
services:
|
||||
mongodb:
|
||||
image: docker.io/bitnami/mongodb:5.0
|
||||
volumes:
|
||||
- 'mongodb_data:/bitnami/mongodb'
|
||||
environment:
|
||||
- ALLOW_EMPTY_PASSWORD=yes
|
||||
- MONGODB_USERNAME=bn_parse
|
||||
- MONGODB_DATABASE=bitnami_parse
|
||||
- MONGODB_PASSWORD=bitnami123
|
||||
parse:
|
||||
image: docker.io/bitnami/parse:5
|
||||
ports:
|
||||
- '1337:1337'
|
||||
volumes:
|
||||
- 'parse_data:/bitnami/parse'
|
||||
depends_on:
|
||||
- mongodb
|
||||
environment:
|
||||
- PARSE_DATABASE_HOST=mongodb
|
||||
- PARSE_DATABASE_PORT_NUMBER=27017
|
||||
- PARSE_DATABASE_USER=bn_parse
|
||||
- PARSE_DATABASE_NAME=bitnami_parse
|
||||
- PARSE_DATABASE_PASSWORD=bitnami123
|
||||
parse-dashboard:
|
||||
image: docker.io/bitnami/parse-dashboard:3
|
||||
# Overriding entrypoint so the container does not exit and we can run some basic tests
|
||||
entrypoint: tail -f /dev/null
|
||||
ports:
|
||||
- '80:4040'
|
||||
volumes:
|
||||
- 'parse_dashboard_data:/bitnami'
|
||||
depends_on:
|
||||
- parse
|
||||
volumes:
|
||||
mongodb_data:
|
||||
driver: local
|
||||
parse_data:
|
||||
driver: local
|
||||
parse_dashboard_data:
|
||||
driver: local
|
||||
|
||||
@@ -38,7 +38,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
|
||||
|
||||
|
||||
* [`4`, `4-debian-11`, `4.1.1`, `4.1.1-debian-11-r0`, `latest` (4/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-parse-dashboard/blob/4.1.1-debian-11-r0/4/debian-11/Dockerfile)
|
||||
* [`3`, `3-debian-11`, `3.3.0`, `3.3.0-debian-11-r0` (3/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-parse-dashboard/blob/3.3.0-debian-11-r0/3/debian-11/Dockerfile)
|
||||
* [`3`, `3-debian-11`, `3.3.0`, `3.3.0-debian-11-r1` (3/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-parse-dashboard/blob/3.3.0-debian-11-r1/3/debian-11/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/parse-dashboard GitHub repo](https://github.com/bitnami/bitnami-docker-parse-dashboard).
|
||||
|
||||
|
||||
Reference in New Issue
Block a user