mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-12 11:14:57 +02:00
21 lines
360 B
YAML
21 lines
360 B
YAML
nodebb:
|
|
image: easypi/nodebb-arm
|
|
ports:
|
|
- "4567:4567"
|
|
links:
|
|
- redis
|
|
volumes:
|
|
- ./data:/var/lib/nodebb
|
|
- /usr/src/nodebb/build
|
|
- /usr/src/nodebb/node_modules
|
|
- /usr/src/nodebb/public/uploads
|
|
restart: always
|
|
|
|
redis:
|
|
image: easypi/redis-arm
|
|
ports:
|
|
- "127.0.0.1:6379:6379"
|
|
volumes:
|
|
- ./data:/data
|
|
restart: always
|