Untitled
unknown
yaml
5 months ago
2.5 kB
1
Indexable
version: '3' networks: dawarich: services: dawarich_redis: image: redis:7.0-alpine command: redis-server networks: - dawarich volumes: - /mnt/user/appdata/dawarich:/var/shared/redis dawarich_db: image: postgres:14.2-alpine container_name: dawarich_db volumes: - /mnt/user/appdata/dawarich:/var/lib/postgresql/data - /mnt/user/appdata/dawarich:/var/shared networks: - dawarich environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: password dawarich_app: image: freikin/dawarich:latest container_name: dawarich_app volumes: - /mnt/user/appdata/dawarich:/usr/local/bundle/gems - /mnt/user/appdata/dawarich:/var/app/public networks: - dawarich ports: - 3010:3000 stdin_open: true tty: true entrypoint: dev-entrypoint.sh command: ['bin/dev'] restart: on-failure environment: RAILS_ENV: development REDIS_URL: redis://dawarich_redis:6379/0 DATABASE_HOST: dawarich_db DATABASE_USERNAME: postgres DATABASE_PASSWORD: password DATABASE_NAME: dawarich_development MIN_MINUTES_SPENT_IN_CITY: 60 APPLICATION_HOST: localhost APPLICATION_HOSTS: "localhost,dawarich.mumquhar.com" TIME_ZONE: America/New_York APPLICATION_PROTOCOL: http logging: driver: "json-file" options: max-size: "100m" max-file: "5" depends_on: - dawarich_db - dawarich_redis dawarich_sidekiq: image: freikin/dawarich:latest container_name: dawarich_sidekiq volumes: - /mnt/user/appdata/dawarich:/usr/local/bundle/gems - /mnt/user/appdata/dawarich:/var/app/public networks: - dawarich stdin_open: true tty: true entrypoint: dev-entrypoint.sh command: ['sidekiq'] restart: on-failure environment: RAILS_ENV: development REDIS_URL: redis://dawarich_redis:6379/0 DATABASE_HOST: dawarich_db DATABASE_USERNAME: postgres DATABASE_PASSWORD: password DATABASE_NAME: dawarich_development APPLICATION_HOST: localhost APPLICATION_HOSTS: localhost BACKGROUND_PROCESSING_CONCURRENCY: 10 APPLICATION_PROTOCOL: http logging: driver: "json-file" options: max-size: "100m" max-file: "5" depends_on: - dawarich_db - dawarich_redis - dawarich_app volumes: db_data: gem_cache: shared_data: public:
Editor is loading...
Leave a Comment