forked from openedx-unsupported/devstack
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose-mktg.yml
More file actions
executable file
·36 lines (30 loc) · 1.15 KB
/
docker-compose-mktg.yml
File metadata and controls
executable file
·36 lines (30 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# This file contains all of the services for an edraak installation. See https://docs.docker.com/compose/compose-file/
# for the appropriate syntax and definitions.
#
# Housekeeping Rules:
# - Group third-party and edraak services separately
# - Alphabetize services in the groups
# - Alphabetize individual configuration options for each service
# - Every service's container name should be prefixed with "edraak.devstack." to avoid conflicts with other containers
# that might be running for the same service.
version: '3.3'
services:
mktg:
image: eu.gcr.io/openedx-231314/edraak/marketing:20250618-153829-m
environment:
NODE_ENV: development
command: bash -c 'while true; do python manage.py runserver 0.0.0.0:8500 --settings=marketingsite.envs.dev; sleep 2; done'
container_name: edraak.devstack.marketing
working_dir: /app
ports:
- "18500:8500"
depends_on:
- mysql
- memcached
volumes:
- ${DEVSTACK_WORKSPACE}/marketing-site:/app
- ~/.ssh/:/root/.ssh
router:
volumes:
- ./nginx/mktg.conf:/etc/nginx/conf.d/mktg.conf
- ./nginx/core-redirects.conf:/etc/nginx/conf.d/redirects.conf