# BikeBike # # ENV DATABASE_URL string = https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNSTRING # # docker-compose up -d # docker-compose run bikebike rake db:setup # docker-compose run bikebike rake db:migrate # docker-compose run bikebike rake assets:precompile # docker-compose down # docker-compose up # # don't do this because new sprockets and manifest.js isn't precompiling to *css, and breaks the container # -- docker-compose run bikebike rake bumbleberry:update -- version: '3' services: redis: container_name: bikebikebike-redis image: redis:6.2-alpine ports: - "6379" restart: always logging: driver: "json-file" options: max-size: "10m" max-file: "3" #volumes: # - # Run sidekiq as it's own process using the same image that bikbike uses! sidekiq: image: bikebikebike container_name: bikebikebike-sidekiq command: sidekiq -q production environment: - REDIS_URL=redis://redis:6379 - DATABASE_URL=${DATABASE_URL:-postgresql://bike_bike:password@db/bike_bike?encoding=unicode&pool=5} - PORT=3000 - RAILS_ENV=${RAILS_ENV:-production} - SMTP_ADDRESS=${SMTP_ADDRESS:-fake-smtp.bikebike.org} - SMTP_DOMAIN=${SMTP_DOMAIN:-bikebike.org} - SMTP_PORT=${SMTP_PORT:-587} - SMTP_USER_NAME=${SMTP_USER_NAME:-info@bikebike.org} - SMTP_PASSWORD=${SMTP_PASSWORD:-fake} - SMTP_SSL=${SMTP_SSL:-false} - ADMIN_EMAIL=${ADMIN_EMAIL:-info@bikebike.org} - DEFAULT_URL=${DEFAULT_URL:-bikebike.org} restart: always logging: driver: "json-file" options: max-size: "10m" max-file: "3" db: container_name: bikebikebike-db image: postgres:9.5 ports: - "5432" restart: always logging: driver: "json-file" options: max-size: "10m" max-file: "3" volumes: - bikebikebike_db:/var/lib/postgresql/data environment: - POSTGRES_PASSWORD=password - POSTGRES_USER=bike_bike - POSTGRES_DB=bike_bike bikebike: build: . image: bikebikebike container_name: bikebikebike networks: letsencrypt: default: command: /bin/sh -c "rm -f /app/BikeBike/tmp/pids/server.pid && rails server -b '0.0.0.0'" # Add environment values that are not in .env (environment:) below in the bike_bike_advanced_environment file # Empty file ok, too, or just comment out this section env_file: - bike_bike_advanced_environment # Add your own environment values in .env, or use the default ones environment: - PORT=3000 - RAILS_ENV=${RAILS_ENV:-production} - DATABASE_URL=${DATABASE_URL:-postgresql://bike_bike:password@db/bike_bike?encoding=unicode&pool=5} - SMTP_ADDRESS=${SMTP_ADDRESS:-fake-smtp.bikebike.org} - SMTP_DOMAIN=${SMTP_DOMAIN:-bikebike.org} - SMTP_PORT=${SMTP_PORT:-587} - SMTP_USER_NAME=${SMTP_USER_NAME:-info@bikebike.org} - SMTP_PASSWORD=${SMTP_PASSWORD:-fake} - SMTP_SSL=${SMTP_SSL:-false} - ADMIN_EMAIL=${ADMIN_EMAIL:-info@bikebike.org} - DEFAULT_URL=${DEFAULT_URL:-bikebike.org} - REDIS_URL=redis://redis:6379 volumes: - bikebikebike:/app/BikeBike - bikebikebike_bundle:/usr/local/bundle - bikebikebike_uploads:/app/BikeBike/public/uploads build: . expose: - "3000" links: - db restart: always logging: driver: "json-file" options: max-size: "10m" max-file: "3" # Create this volumes, docker volume create me # or comment our external volumes: bikebikebike_db: external: true bikebikebike: external: true bikebikebike_bundle: external: true bikebikebike_uploads: external: true # Remove this network if you don't use it networks: letsencrypt: external: true