mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2025-12-16 18:26:10 -06:00
66 lines
1.6 KiB
YAML
66 lines
1.6 KiB
YAML
volumes:
|
|
wygiwyh_dev_postgres_data: {}
|
|
wygiwyh_temp:
|
|
|
|
services:
|
|
web:
|
|
build:
|
|
context: .
|
|
dockerfile: ./docker/dev/django/Dockerfile
|
|
image: wygiwyh_dev_server
|
|
container_name: wygiwyh_dev_server
|
|
command: /start-supervisor
|
|
volumes:
|
|
- ./app/:/usr/src/app/:z
|
|
- ./frontend/:/usr/src/frontend:z
|
|
- wygiwyh_temp:/usr/src/app/temp/
|
|
ports:
|
|
- "${OUTBOUND_PORT}:8000"
|
|
env_file:
|
|
- .env
|
|
depends_on:
|
|
- db
|
|
- webpack
|
|
restart: unless-stopped
|
|
|
|
webpack:
|
|
build:
|
|
context: .
|
|
dockerfile: ./docker/dev/webpack/Dockerfile
|
|
image: wygiwyh_dev_node
|
|
container_name: wygiwyh_dev_node
|
|
volumes:
|
|
- ./frontend/:/usr/src/frontend
|
|
- ./app/:/usr/src/app/
|
|
# http://jdlm.info/articles/2016/03/06/lessons-building-node-app-docker.html
|
|
- /usr/src/frontend/node_modules
|
|
command: npm run watch
|
|
ports:
|
|
- '${WEBPACK_OUTBOUND_PORT}:9091'
|
|
environment:
|
|
- WATCHPACK_POLLING=true
|
|
restart: unless-stopped
|
|
|
|
db:
|
|
image: postgres:15
|
|
container_name: ${SQL_HOST}
|
|
volumes:
|
|
- wygiwyh_dev_postgres_data:/var/lib/postgresql/data/
|
|
environment:
|
|
- POSTGRES_USER=${SQL_USER}
|
|
- POSTGRES_PASSWORD=${SQL_PASSWORD}
|
|
- POSTGRES_DB=${SQL_DATABASE}
|
|
ports:
|
|
- '${SQL_PORT}:5432'
|
|
restart: unless-stopped
|
|
|
|
# procrastinate:
|
|
# <<: *django
|
|
# image: wygiwyh_dev_procrastinate
|
|
# container_name: wygiwyh_dev_procrastinate
|
|
# depends_on:
|
|
# - db
|
|
# ports: [ ]
|
|
# command: /start-procrastinate
|
|
# restart: unless-stopped
|