Skip to content

Commit

Permalink
Update compose for new persister and provide compose support for ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjsanders committed Dec 20, 2017
1 parent 1da487b commit 2b199de
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
36 changes: 36 additions & 0 deletions vendor/docker-arm/compose-nodiscovery.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
version: '2'

services:
redis:
image: 'arm32v7/redis'
networks:
- cowbull_network
restart: always
cowbull_svc:
image: 'dsanderscan/cowbull:latest-arm32'
depends_on:
- redis
# ports:
# - 5000:8080
environment:
- LOGGING_LEVEL=10
- 'PERSISTER={"engine_name": "redis", "parameters": {"host": "redis", "port": 6379, "db": 0}}'
volumes:
- /home/devdsanders/Documents/dev/cowbull/python_cowbull_server/vendor/docker/:/cowbull/config
networks:
- cowbull_network
restart: always
cowbull_webapp:
image: 'dsanderscan/cowbull_webapp:latest-arm32'
depends_on:
- cowbull_svc
ports:
- 8080:8080
environment:
- COWBULL_SERVER=cowbull_svc
- COWBULL_PORT=8080
- COWBULL_VERSION=v1
networks:
- cowbull_network
networks:
cowbull_network:
2 changes: 1 addition & 1 deletion vendor/docker/compose-nodiscovery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
# - 5000:8080
environment:
- LOGGING_LEVEL=10
- REDIS_HOST=redis
- 'PERSISTER={"engine_name": "redis", "parameters": {"host": "redis-11039.c8.us-east-1-2.ec2.cloud.redislabs.com", "port": 11039, "db": 0}}'
volumes:
- /home/devdsanders/Documents/dev/cowbull/python_cowbull_server/vendor/docker/:/cowbull/config
networks:
Expand Down

0 comments on commit 2b199de

Please sign in to comment.