Skip to content

Instantly share code, notes, and snippets.

@dominikj111
Created August 17, 2019 04:28
Show Gist options
  • Save dominikj111/caa3a256ab73e15f121e2448cc54de37 to your computer and use it in GitHub Desktop.
Save dominikj111/caa3a256ab73e15f121e2448cc54de37 to your computer and use it in GitHub Desktop.
version: '3.3'
services:
muracms:
build:
context: .
# context: https://github.com/blueriver/docker-muracms.git#:examples/commandbox-lucee5-mysql
image: blueriver/docker-muracms:7.1-commandbox-lucee5
depends_on:
- svc_muradb
env_file:
- .dev-variables.env
volumes:
- ./www/modules:/app/modules
- ./www/plugins:/app/plugins
- ./www/sites:/app/sites
- ./www/themes:/app/themes
- ./testbox:/app/core/vendor/testbox
- ./server.json:/app/server.json
- ./rewrites.xml:/app/rewrites.xml
ports:
- "8003:8003"
# DB
svc_muradb:
image: mysql:5.7.19
environment:
MYSQL_DATABASE: muradb
MYSQL_ROOT_PASSWORD: 5trongP@55w0rd
volumes:
- vol_muradb:/var/lib/mysql
ports:
- "5003:3306"
# Mounts
volumes:
vol_muradb:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment