Skip to content

Commit

Permalink
Container names
Browse files Browse the repository at this point in the history
  • Loading branch information
gthole committed Feb 19, 2016
1 parent 5939d59 commit 04ab006
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# Dev services
avahi:
container_name: 'avahi'
image: 'enernoclabs/avahi:latest'
net: 'host'
log_driver: 'none'
restart: 'on-failure'
db:
container_name: 'db'
image: 'mysql'
ports:
- '3306:3306'
Expand All @@ -15,6 +17,7 @@ db:
MYSQL_PASSWORD: 'gedgo'
log_driver: 'none'
redis:
container_name: 'redis'
image: 'redis'
ports:
- '6379'
Expand All @@ -32,6 +35,7 @@ app:
- 'db'
- 'redis'
worker:
container_name: 'gedgo_worker'
image: 'gedgo_app'
command: ['python', 'manage.py', 'celeryd', '-c', '1', '--loglevel=info']
volumes:
Expand Down

0 comments on commit 04ab006

Please sign in to comment.