autobaan/docker/docker-compose.yml

22 lines
394 B
YAML
Raw Normal View History

services:
http:
build:
context: ..
dockerfile: ./docker/server/Dockerfile
args:
- PORT=3000
- REDIS_HOST=redis
- REDIS_PORT=6379
restart: always
environment:
- PORT=3000
- REDIS_HOST=redis
- REDIS_PORT=6379
ports:
- 3000:3000
volumes:
- ../db:/app/db
redis:
image: redis
ports:
- 6379