Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove volumes_from #1869

Merged
merged 1 commit into from Jan 8, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 9 additions & 4 deletions docker-compose.override.yml
Expand Up @@ -4,6 +4,9 @@ version: "3"
# They are made to ease your life as a developer.
# **NOT** production ready !

volumes:
smtp_maildir:

services:
georchestra.mydomain.org:
image: traefik
Expand All @@ -28,20 +31,22 @@ services:
smtp:
build: docker/smtp/smtp-sink
image: camptocamp/smtp-sink:latest
volumes:
- smtp_maildir:/home/smtp/Maildir/

courier-imap:
build: docker/smtp/courier-imap
image: camptocamp/courier-imap:latest
volumes_from:
- smtp:rw
volumes:
- smtp_maildir:/home/smtp/Maildir/

webmail:
build: docker/smtp/webmail
image: camptocamp/sqwebmail:latest
ports:
- "8081:80"
volumes_from:
- smtp:rw
volumes:
- smtp_maildir:/home/smtp/Maildir/

geodata:
build: docker/ssh_data
Expand Down