mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 10:41:45 +08:00
fef45789c4
- pass USER=discourse which is not passed in from docker exec (improves backup restore) - add unicorn script and unicorn support (expose port 9292)
7 lines
292 B
Bash
Executable File
7 lines
292 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CMD="cd /src && USER=discourse RAILS_ENV=development rake db:migrate"
|
|
docker exec -it -u discourse:discourse discourse_dev /bin/bash -c "$CMD"
|
|
CMD="cd /src && USER=discourse RAILS_ENV=test rake db:migrate"
|
|
docker exec -it -u discourse:discourse discourse_dev /bin/bash -c "$CMD"
|