-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: move work to subdirectory and undo changes in root
- Loading branch information
1 parent
5d571a5
commit d7972b7
Showing
8 changed files
with
90 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,4 +63,4 @@ yarn-debug.log* | |
/app/assets/builds/* | ||
!/app/assets/builds/.keep | ||
public/assets | ||
sql-data | ||
docker_migration/sql-data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
services: | ||
db: | ||
image: mysql/mysql-server:latest | ||
environment: | ||
- MYSQL_ROOT_HOST=% | ||
- MYSQL_ROOT_PASSWORD=password | ||
ports: | ||
- "3309:3306" | ||
expose: | ||
- "3306" | ||
container_name: antcat-db | ||
volumes: | ||
- ./sql-data:/docker-entrypoint-initdb.d | ||
version: "3" | ||
|
||
services: | ||
app: | ||
depends_on: | ||
- db | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
dockerfile: Dockerfile.dev | ||
environment: | ||
DB_USERNAME: root | ||
DB_PASSWORD: password | ||
DB_DATABASE: antcat | ||
DB_DATABASE: antcat_docker | ||
DB_PORT: 3306 | ||
DB_HOST: db | ||
NO_DEV_MONKEY_PATCHES: "y" | ||
volumes: | ||
- .:/app | ||
- ./docker_dev/database.docker-dev.yml:/app/config/database.yml | ||
- ./config/server.yml.example:/app/config/server.yml | ||
ports: | ||
- "8080:8080" | ||
container_name: antcat-app | ||
user: antcat | ||
stdin_open: true | ||
tty: true | ||
command: ["/bin/bash", "-c", "app/startup.sh"] | ||
container_name: antcat_app | ||
|
||
|
||
db: | ||
image: mysql:5.7 | ||
expose: | ||
- "3306" | ||
ports: | ||
- "3309:3306" | ||
environment: | ||
MYSQL_ALLOW_EMPTY_PASSWORD: "true" | ||
volumes: | ||
- mysql:/var/lib/mysql | ||
|
||
volumes: | ||
mysql: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
default: &default | ||
adapter: mysql2 | ||
encoding: utf8 | ||
pool: 5 | ||
username: <%= ENV['DB_USERNAME'] %> | ||
password: <%= ENV['DB_PASSWORD'] %> | ||
port: <%= ENV['DB_PORT'] %> | ||
host: <%= ENV['DB_HOST'] %> | ||
socket: /var/run/mysqld/mysqlx.sock | ||
|
||
development: | ||
<<: *default | ||
database: <%= ENV['DB_DATABASE'] %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
services: | ||
db: | ||
image: mysql/mysql-server:latest | ||
environment: | ||
- MYSQL_ROOT_HOST=% | ||
- MYSQL_ROOT_PASSWORD=password | ||
ports: | ||
- "3309:3306" | ||
expose: | ||
- "3306" | ||
container_name: antcat-db | ||
volumes: | ||
- ./sql-data:/docker-entrypoint-initdb.d | ||
|
||
app: | ||
depends_on: | ||
- db | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
environment: | ||
DB_USERNAME: root | ||
DB_PASSWORD: password | ||
DB_DATABASE: antcat | ||
DB_PORT: 3306 | ||
DB_HOST: db | ||
NO_DEV_MONKEY_PATCHES: "y" | ||
volumes: | ||
- ..:/app | ||
- ./database.yml:/app/config/database.yml | ||
- ../config/server.yml.example:/app/config/server.yml | ||
ports: | ||
- "8080:8080" | ||
container_name: antcat-app | ||
user: antcat | ||
stdin_open: true | ||
tty: true | ||
command: ["/bin/bash", "-c", "app/startup.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
|
||
|
||
# Remove any pre-exisitng PID files | ||
rm -rf /app/tmp/pids/server.pid | ||
|
||
bundle install --path=vendor/bundle | ||
yarn install | ||
|
||
# Configure bundle to use a local path for gems | ||
bundle config path vendor/bundle | ||
|
||
# Start the Solr service for Sunspot | ||
bundle exec rails sunspot:solr:start | ||
|
||
# Start the Rails server, binding it to all network interfaces | ||
bundle exec rails s -p 8080 -b '0.0.0.0' |