You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
JikanDockerized/docker-compose.yml

21 lines
337 B
YAML

version: "2"
services:
jikan-rest-api:
build:
context: jikan
dockerfile: Dockerfile
environment:
- REDIS_HOST=jikan-redis
depends_on:
- jikan-redis
ports:
- "9080:8080"
networks:
- default
restart: unless-stopped
jikan-redis:
image: redis
restart: unless-stopped