@athenna/database
Version:
The Athenna database handler for SQL/NoSQL.
19 lines (17 loc) • 399 B
text/typescript
/**
* @athenna/database
*
* (c) João Lenon <lenon@athenna.io>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
export default {
container_name: 'athenna_mongo',
image: 'mongo',
ports: ['27017:27017'],
environment: {
MONGO_INITDB_ROOT_USERNAME: 'root',
MONGO_INITDB_ROOT_PASSWORD: 'root'
}
}