flecks/packages/redis/build/containers.js

16 lines
301 B
JavaScript
Raw Normal View History

2024-02-01 14:55:54 -06:00
module.exports = (flecks) => ({
2022-02-25 04:58:08 -06:00
redis: {
2022-03-02 00:54:53 -06:00
environment: {
app: {
host: 'redis',
},
},
2023-12-05 15:54:32 -06:00
extra: {
2024-01-28 12:46:13 -06:00
command: `--port ${flecks.get('@flecks/redis.port')}`,
2023-12-05 15:54:32 -06:00
},
2022-03-02 00:54:53 -06:00
image: 'redis:6',
2022-02-25 04:58:08 -06:00
mount: '/data',
2024-01-28 12:46:13 -06:00
ports: {[flecks.get('@flecks/redis.port')]: 6379},
2022-02-25 04:58:08 -06:00
},
});