start on testing
This commit is contained in:
parent
5a1016d1c9
commit
6bcbfdc59e
12
mastodon/.env
Normal file
12
mastodon/.env
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
PAPERCLIP_SECRET=foo
|
||||||
|
SECRET_KEY_BASE=bar
|
||||||
|
OTP_SECRET=foobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobar
|
||||||
|
|
||||||
|
#REDIS_HOST=localhost
|
||||||
|
#REDIS_PORT=6379
|
||||||
|
|
||||||
|
DB_HOST=127.0.0.1
|
||||||
|
DB_NAME=mastodon_dev
|
||||||
|
DB_USER=mastodon_dev
|
||||||
|
DB_PASS=mastodon_dev
|
||||||
|
DB_PORT=5432
|
61
mastodon/docker-compose.yml
Normal file
61
mastodon/docker-compose.yml
Normal file
|
@ -0,0 +1,61 @@
|
||||||
|
version: '3'
|
||||||
|
services:
|
||||||
|
|
||||||
|
db:
|
||||||
|
restart: always
|
||||||
|
image: postgres:9.6-alpine
|
||||||
|
environment:
|
||||||
|
POSTGRES_USER: mastodon_dev
|
||||||
|
POSTGRES_PASSWORD: mastodon_dev
|
||||||
|
POSTGRES_DB: mastodon_dev
|
||||||
|
### Uncomment to enable DB persistance
|
||||||
|
# volumes:
|
||||||
|
# - ./postgres:/var/lib/postgresql/data
|
||||||
|
|
||||||
|
redis:
|
||||||
|
restart: always
|
||||||
|
image: redis:4.0-alpine
|
||||||
|
### Uncomment to enable REDIS persistance
|
||||||
|
# volumes:
|
||||||
|
# - ./redis:/data
|
||||||
|
|
||||||
|
web:
|
||||||
|
#build: .
|
||||||
|
image: gargron/mastodon:v2.2.0
|
||||||
|
restart: always
|
||||||
|
env_file: .env
|
||||||
|
command: bundle exec rails s -p 3000 -b '0.0.0.0'
|
||||||
|
ports:
|
||||||
|
- "3000:3000"
|
||||||
|
depends_on:
|
||||||
|
- db
|
||||||
|
- redis
|
||||||
|
volumes:
|
||||||
|
- ./public/assets:/mastodon/public/assets
|
||||||
|
- ./public/packs:/mastodon/public/packs
|
||||||
|
- ./public/system:/mastodon/public/system
|
||||||
|
|
||||||
|
streaming:
|
||||||
|
#build: .
|
||||||
|
image: gargron/mastodon:v2.2.0
|
||||||
|
restart: always
|
||||||
|
env_file: .env
|
||||||
|
command: npm run start
|
||||||
|
ports:
|
||||||
|
- "4000:4000"
|
||||||
|
depends_on:
|
||||||
|
- db
|
||||||
|
- redis
|
||||||
|
|
||||||
|
sidekiq:
|
||||||
|
#build: .
|
||||||
|
image: gargron/mastodon:v2.2.0
|
||||||
|
restart: always
|
||||||
|
env_file: .env
|
||||||
|
command: bundle exec sidekiq -q default -q mailers -q pull -q push
|
||||||
|
depends_on:
|
||||||
|
- db
|
||||||
|
- redis
|
||||||
|
volumes:
|
||||||
|
- ./public/packs:/mastodon/public/packs
|
||||||
|
- ./public/system:/mastodon/public/system
|
|
@ -10,6 +10,7 @@
|
||||||
"build-svg": "node ./bin/build-svg.js",
|
"build-svg": "node ./bin/build-svg.js",
|
||||||
"build-sass": "node ./bin/build-sass.js",
|
"build-sass": "node ./bin/build-sass.js",
|
||||||
"build-sass-watch": "node ./bin/build-sass.js --watch",
|
"build-sass-watch": "node ./bin/build-sass.js --watch",
|
||||||
|
"run-mastodon": "cd mastodon && docker-compose run --rm web rake db:migrate && docker-compose up",
|
||||||
"cy:run": "cypress run",
|
"cy:run": "cypress run",
|
||||||
"cy:open": "cypress open",
|
"cy:open": "cypress open",
|
||||||
"test": "run-p --race dev cy:run",
|
"test": "run-p --race dev cy:run",
|
||||||
|
|
Loading…
Reference in a new issue