scinote-web/docker-compose.yml

95 lines
2.4 KiB
YAML
Raw Normal View History

version: '2'
services:
db:
container_name: scinote_db_development
image: postgres:15
volumes:
- scinote_development_postgres:/var/lib/postgresql/data
2019-09-09 22:46:51 +08:00
ports:
- "5432:5432"
2020-02-19 16:54:40 +08:00
environment:
2020-02-19 17:26:37 +08:00
- "POSTGRES_USER=postgres"
2020-02-19 16:54:40 +08:00
- "POSTGRES_PASSWORD=mysecretpassword"
2016-02-12 23:52:43 +08:00
web:
build:
context: .
dockerfile: Dockerfile
image: scinote_web_development
container_name: scinote_web_development
stdin_open: true
tty: true
depends_on:
- db
ports:
- "3000:3000"
command: >
bash -c "rm -f /usr/src/app/tmp/pids/server.pid &&
(bundle check || bundle install) &&
2023-03-31 18:11:57 +08:00
bundle exec rails s -b 0.0.0.0"
environment:
- RAILS_ENV=development
volumes:
- .:/usr/src/app
2017-04-21 21:13:20 +08:00
- scinote_development_bundler:/usr/local/bundle/
- scinote_development_files:/usr/src/app/public/system
- scinote_development_storage:/usr/src/app/storage
2016-02-12 23:52:43 +08:00
2023-03-31 18:11:57 +08:00
webpack:
build:
context: .
dockerfile: Dockerfile
image: scinote_web_development
container_name: scinote_webpack_development
stdin_open: true
tty: true
command: >
bash -c "yarn install && yarn build --watch"
environment:
- NODE_ENV=development
volumes:
- .:/usr/src/app
- scinote_development_bundler:/usr/local/bundle/
- scinote_development_files:/usr/src/app/public/system
2023-07-06 19:19:28 +08:00
css_bundling:
build:
context: .
dockerfile: Dockerfile
image: scinote_web_development
container_name: scinote_css_bundling_development
stdin_open: true
tty: true
command: >
bash -c "yarn build:css --watch"
environment:
- NODE_ENV=development
volumes:
- .:/usr/src/app
- scinote_development_bundler:/usr/local/bundle/
- scinote_development_files:/usr/src/app/public/system
tailwind:
build:
context: .
dockerfile: Dockerfile
image: scinote_web_development
container_name: scinote_tailwind_development
stdin_open: true
tty: true
command: >
bash -c "rails tailwindcss:watch"
environment:
- RAILS_ENV=development
- NODE_ENV=development
volumes:
- .:/usr/src/app
- scinote_development_bundler:/usr/local/bundle/
- scinote_development_files:/usr/src/app/public/system
volumes:
scinote_development_postgres:
scinote_development_bundler:
scinote_development_files:
scinote_development_storage: