1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-25 02:04:06 +02:00
dockerfiles/nodebb/arm/docker-compose.yml

19 lines
288 B
YAML
Raw Normal View History

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