mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
19 lines
282 B
YAML
19 lines
282 B
YAML
nodebb:
|
|
image: vimagick/nodebb
|
|
ports:
|
|
- "4567:4567"
|
|
links:
|
|
- redis
|
|
volumes:
|
|
- ./data:/var/lib/nodebb
|
|
- /usr/src/nodebb/build
|
|
restart: always
|
|
|
|
redis:
|
|
image: redis:alpine
|
|
ports:
|
|
- "127.0.0.1:6379:6379"
|
|
volumes:
|
|
- ./data:/data
|
|
restart: always
|