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.
22 lines
355 B
YAML
22 lines
355 B
YAML
version: "3.4"
|
|
|
|
services:
|
|
|
|
jikan-rest:
|
|
build:
|
|
context: jikan
|
|
dockerfile: Dockerfile
|
|
depends_on:
|
|
- jikan-redis
|
|
ports:
|
|
- "9001:80"
|
|
networks:
|
|
- default
|
|
restart: always
|
|
container_name: jikan-rest-api
|
|
|
|
jikan-redis:
|
|
image: redis:5.0.6-buster
|
|
restart: always
|
|
container_name: jikan-rest-redis
|