Files
sx-fc/docker-compose.yml
2019-11-15 14:17:50 +06:30

34 lines
597 B
YAML

version: '3'
services:
code2lab:
build:
context: .
dockerfile: ./Dockerfile
links:
- redis
volumes:
- .:/sxrestaurant
- "/etc/timezone:/etc/timezone:ro"
- "/etc/localtime:/etc/localtime:ro"
env_file:
- .code2lab.env
ports:
- '62160:62158'
environment:
- REDIS_URL=redis://172.17.0.1:6380/0
sidekiq:
build: .
command: bundle exec sidekiq -C config/sidekiq.yml
links:
- redis
volumes:
- .:/sxrestaurant
environment:
- REDIS_URL=redis://172.17.0.1:6380/0
redis:
image: redis
ports:
- '6380:6379'
volumes:
- ../data/redis:/data