1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-24 05:16:44 +02:00
dockerfiles/nodebb/arm/docker-compose.yml

18 lines
260 B
YAML
Raw Normal View History

2016-01-16 07:19:42 +08:00
nodebb:
2016-07-19 16:34:20 +08:00
image: easypi/nodebb-arm
2016-01-16 07:19:42 +08:00
ports:
- "4567:4567"
links:
- redis
2017-05-10 16:17:11 +08:00
volumes:
- ./data:/var/lib/nodebb
2016-01-16 07:19:42 +08:00
restart: always
redis:
2016-07-19 16:34:20 +08:00
image: easypi/redis-arm
2016-01-16 07:19:42 +08:00
ports:
- "127.0.0.1:6379:6379"
2017-05-10 11:23:39 +08:00
volumes:
- ./data:/data
2016-01-16 07:19:42 +08:00
restart: always