Skip to content

Commit

Permalink
update .env configuration and volume paths for mage
Browse files Browse the repository at this point in the history
  • Loading branch information
vnbl committed Oct 28, 2024
1 parent 8556737 commit 988bff2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ MYSQL_HOST='mysql_host'
MYSQL_DB='mysql_db'
MYSQL_PORT='3306'

MAGE_DATA_DIR= 'path/to/mage/data'
MAGE_DATA_DIR= 'path/in/container'
LOCAL_MAGE_DATA_DIR='local/path'
PIPELINE_HOST='localhost'
PIPELINE_PORT='6789'
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ services:
volumes:
- ./:/app
# manually transfer .mage_data with already created secrets to server or store secrets in server's mage UI during deployment
- ../.mage_data:/root/.mage_data
- ${LOCAL_MAGE_DATA_DIR}:${MAGE_DATA_DIR}

volumes:
postgres_data:

0 comments on commit 988bff2

Please sign in to comment.