1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-10 04:19:24 +02:00
dockerfiles/zoonavigator/docker-compose.yml

22 lines
358 B
YAML
Raw Normal View History

2019-01-09 08:52:04 +02:00
version: '2.1'
services:
web:
image: elkozmon/zoonavigator-web:0.5.1
ports:
- "8000:8000"
environment:
- WEB_HTTP_PORT=8000
- API_HOST=api
- API_PORT=9000
depends_on:
- api
restart: always
api:
image: elkozmon/zoonavigator-api:0.5.1
environment:
- API_HTTP_PORT=9000
restart: always