Initial build environment stuff

This commit is contained in:
Jamie Curnow
2018-06-20 08:45:27 +10:00
parent 458f9daf4e
commit 254c5c7add
10 changed files with 276 additions and 47 deletions

View File

@@ -1,14 +1,31 @@
version: "2"
services:
app:
image: jc21/nginx-proxy-manager
image: jc21/node
ports:
- 80:80
- 81:81
- 443:443
- 8080:80
- 8081:81
- 8443:443
environment:
- NODE_ENV=development
- FORCE_COLOR=1
volumes:
- ./config:/config
- ./letsencrypt:/etc/letsencrypt
- ./manager:/srv/manager
- ./data/letsencrypt:/etc/letsencrypt
- .:/srv/app
depends_on:
- db
links:
- db
command: node --max_old_space_size=250 --abort_on_uncaught_exception node_modules/nodemon/bin/nodemon.js
db:
image: mariadb:10.3.7
environment:
MYSQL_ROOT_PASSWORD: "npm"
MYSQL_DATABASE: "npm"
MYSQL_USER: "npm"
MYSQL_PASSWORD: "npm"
volumes:
- ./config/my.cnf:/etc/mysql/conf.d/npm.cnf
- ./data/mysql:/var/lib/mysql
- ./data/initial-sql:/docker-entrypoint-initdb.d