mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-22 04:18:46 +08:00
35 lines
738 B
YAML
35 lines
738 B
YAML
|
# This is a Docker Compose configuration
|
||
|
# intended for development purposes
|
||
|
|
||
|
version: '3'
|
||
|
|
||
|
volumes:
|
||
|
db: {}
|
||
|
|
||
|
services:
|
||
|
db:
|
||
|
image: mysql:8
|
||
|
environment:
|
||
|
MYSQL_DATABASE: bookstack-test
|
||
|
MYSQL_USER: bookstack-test
|
||
|
MYSQL_PASSWORD: bookstack-test
|
||
|
MYSQL_RANDOM_ROOT_PASSWORD: 'true'
|
||
|
command: --default-authentication-plugin=mysql_native_password
|
||
|
volumes:
|
||
|
- db:/var/lib/mysql
|
||
|
app:
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: docker/dev/Dockerfile
|
||
|
ports:
|
||
|
- ${DEV_PORT}:80
|
||
|
volumes:
|
||
|
- ./:/app
|
||
|
entrypoint: /app/docker/dev/entrypoint.app.sh
|
||
|
node:
|
||
|
image: node:alpine
|
||
|
working_dir: /app
|
||
|
volumes:
|
||
|
- ./:/app
|
||
|
entrypoint: /app/docker/dev/entrypoint.node.sh
|