Skip to content
Snippets Groups Projects
Select Git revision
  • 313eed9380f7628caaefc4165b0a60fe68d00a0e
  • eip-develop default
  • ovalt/user-restore
  • develop
  • 0valt/1865/filters
  • 0valt/1885/flag-history
  • 0valt/keyboard
  • art/complaints
  • 0valt/1875/audit-logs
  • 0valt/1876/thread-rename
  • dependabot/npm_and_yarn/npm_and_yarn-a48ea45f8c
  • cellio/714-rename-thread
  • 0valt/sidebar
  • dependabot/bundler/bundler-5a9ea26a4b
  • 0valt/audits
  • 0valt/1859/tag-drafts
  • 0valt/1253/imports-filters
  • 0valt/1857/markdown-in-titles
  • 0valt/seed
  • 0valt/tags
  • 0valt/z-index
  • 0valt/docs
  • v0.12.3
  • v0.12.2
  • v0.12.1
  • v0.12.0
  • v0.11.0
  • v0.10.0
  • v0.9.0
  • v0.8.0
  • v0.7.0
  • v0.6.1
  • v0.6.0
  • v0.5.0
  • v0.4.0
  • v0.3.0
  • v1.0
37 results

schema.rb

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    docker-compose.yml 1.20 KiB
    version: "3.9"
    services:
      db:
        build:
          context: "."
          dockerfile: docker/Dockerfile.db
        volumes:
          - ./docker/mysql:/var/lib/mysql
        env_file:
          - ${ENV_FILE_LOCATION}
        command: mysqld --default-authentication-plugin=mysql_native_password --skip-mysqlx
        cap_add:
          - SYS_NICE
        healthcheck:
          test: mysqladmin ping -h 127.0.0.1 -u $$MYSQL_USER --password=$$MYSQL_PASSWORD
          start_period: 5s
          interval: 5s
          timeout: 5s
          retries: 12
    
    
      uwsgi:
        restart: always
        build:
          context: "."
          dockerfile: docker/Dockerfile
        depends_on:
          db:
            condition: service_healthy
          redis:
            condition: service_healthy
        environment:
          - COMMUNITY_NAME=${COMMUNITY_NAME}
          - RAILS_ENV=${RAILS_ENV}
          - CONFIRMABLE_ALLOWED_ACCESS_DAYS=${CONFIRMABLE_ALLOWED_ACCESS_DAYS}
          - LOCAL_DEV_PORT=${LOCAL_DEV_PORT}
        env_file:
          - ${ENV_FILE_LOCATION}
        ports:
          - "${LOCAL_DEV_PORT}:3000"
        volumes:
          - .:/code
          - ./static:/var/www/static
          - ./images:/var/www/images
        links:
          - redis
          - db
    
      redis:
        restart: always
        image: redis:latest
        healthcheck:
          test: ["CMD", "redis-cli","ping"]