mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
22 lines
346 B
YAML
22 lines
346 B
YAML
version: '2.1'
|
|
|
|
services:
|
|
|
|
web:
|
|
image: elkozmon/zoonavigator-web
|
|
ports:
|
|
- "8000:8000"
|
|
environment:
|
|
- WEB_HTTP_PORT=8000
|
|
- API_HOST=api
|
|
- API_PORT=9000
|
|
depends_on:
|
|
- api
|
|
restart: always
|
|
|
|
api:
|
|
image: elkozmon/zoonavigator-api
|
|
environment:
|
|
- API_HTTP_PORT=9000
|
|
restart: always
|