Update docker-compose.yml

-Change version to 2 so that we can use it with older versions
-Change restart condition of containers
pull/4/head
Angel Garcia 5 years ago committed by GitHub
parent de359242d0
commit d93ccf7281
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,7 +1,6 @@
version: "3.4"
version: "2"
services:
jikan-rest-api:
build:
context: jikan
@ -12,8 +11,8 @@ services:
- "9001:80"
networks:
- default
restart: always
restart: unless-stopped
jikan-redis:
image: redis
restart: always
restart: unless-stopped

Loading…
Cancel
Save