1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-13 06:40:06 +02:00

Revert "deploy: add docker login"

This reverts commit 648caa4dd4.
This commit is contained in:
Tom Gallacher 2016-10-20 17:47:37 +01:00
parent 7ffaba66a5
commit 04264931b5
3 changed files with 63 additions and 69 deletions

View File

@ -16,7 +16,6 @@ get_triton_details
write_env_file
docker-compose build
docker login -e="." -u="$_DOCKER_LOGIN_USERNAME" -p="$_DOCKER_LOGIN_PASSWORD" $_DOCKER_REGISTRY
docker-compose push
export DOCKER_HOST=$_DOCKER_HOST

View File

@ -1,9 +1,7 @@
version: '2'
services:
#############################################################################
# CONSUL
#############################################################################
consul:
consul:
image: progrium/consul:latest
labels:
- triton.cns.services=consul
@ -23,8 +21,7 @@ services:
#############################################################################
# CloudAPI GraphQL
#############################################################################
cloudapi:
image: quay.io/yldio/joyent-dashboard-cloudapi-graphql
cloudapi:
build: ./cloudapi-graphql
mem_limit: 128m
labels:
@ -37,7 +34,7 @@ services:
#############################################################################
# Frontend
#############################################################################
backend:
backend:
build: ./backend
mem_limit: 128m
labels:

View File

@ -1,27 +1,25 @@
version: '2'
services:
consul:
consul:
extends:
file: docker-compose.yml
service: consul
ports:
- 8500:8500
cloudapi:
cloudapi:
extends:
file: docker-compose.yml
service: cloudapi
depends_on:
- consul
links:
- consul:consul
environment:
- PORT=3000
- ROOT_URL=http://localhost:3000
- CONSUL=consul
backend:
backend:
extends:
file: docker-compose.yml
service: backend
depends_on:
- consul
links:
- consul:consul
environment:
- PORT=8000
- ROOT_URL=http://localhost:8000