36 lines
1.5 KiB
YAML
36 lines
1.5 KiB
YAML
version: '2'
|
|
services:
|
|
mongodb:
|
|
image: bitnami/mongodb:latest
|
|
volumes:
|
|
- mongodb_data:/bitnami
|
|
parse:
|
|
# A Red Hat Customer Portal login is required to access this image. If you do not have one already, you can obtain one at https://www.redhat.com/wapps/ugc/register.html
|
|
# Pull action should be successful from any RHEL Host system running the Docker service and executing the following command: docker login registry.connect.redhat.com
|
|
# + info: https://access.redhat.com/containers/?tab=images&platform=docker#/registry.connect.redhat.com/bitnami/parse-server
|
|
image: registry.connect.redhat.com/bitnami/parse-server
|
|
ports:
|
|
- '1337:1337'
|
|
volumes:
|
|
- parse_data:/bitnami
|
|
depends_on:
|
|
- mongodb
|
|
parse-dashboard:
|
|
# A Red Hat Customer Portal login is required to access this image. If you do not have one already, you can obtain one at https://www.redhat.com/wapps/ugc/register.html
|
|
# Pull action should be successful from any RHEL Host system running the Docker service and executing the following command: docker login registry.connect.redhat.com
|
|
# + info: https://access.redhat.com/containers/?tab=images&platform=docker#/registry.connect.redhat.com/bitnami/parse-dashboard
|
|
image: registry.connect.redhat.com/bitnami/parse-dashboard
|
|
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
|