marc-leopold/docker-compose.yml

29 lines
700 B
YAML
Raw Normal View History

2019-02-24 22:07:20 +00:00
version: "3"
services:
nuxt:
build: ./app/
container_name: marcleopold-website
restart: always
ports:
2019-02-25 13:30:56 +00:00
- 0.0.0.0:3003:3003
2019-02-24 22:07:20 +00:00
command:
2019-02-25 13:30:56 +00:00
"npm run dev"
octobercms:
image: aspendigital/octobercms:latest
2019-02-25 17:14:04 +00:00
build: ./server/
restart: always
ports:
2019-02-25 17:27:48 +00:00
- 0.0.0.0:3004:80
environment:
- ENABLE_CRON=true
- APP_DEBUG=true
- INIT_PLUGINS=true
volumes:
- ./server/plugins:/var/www/html/plugins
- ./server/storage/app:/var/www/html/storage/app
- ./server/storage/logs:/var/www/html/storage/logs
- ./server/storage/database.sqlite:/var/www/html/storage/database.sqlite
- ./server/themes:/var/www/html/themes