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
346 B
YAML
Raw Normal View History

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