Using docker link over port in multi container samples
authorErick Guan <fantasticfears@gmail.com>
Thu, 7 Jan 2016 12:52:42 +0000 (13:52 +0100)
committerErick Guan <fantasticfears@gmail.com>
Thu, 7 Jan 2016 13:07:07 +0000 (14:07 +0100)
samples/data.yml
samples/redis.yml
samples/standalone.yml
samples/web_only.yml

index 2491f62701422ca988aec00ba5a8445887b97180..a38ffa0c9f5dbf7e8bd9012af23c1198a4e68b71 100644 (file)
@@ -5,12 +5,6 @@
 templates:
   - "templates/postgres.template.yml"
   - "templates/redis.template.yml"
-  - "templates/sshd.template.yml"
-
-# change to use your private IP 
-expose:
-  - "10.0.0.1:5432:5432"
-  - "10.0.0.1:6379:6379"
 
 # any extra arguments for Docker?
 # docker_args:
index 01dee6e2126526f30161fcd1531ac4564e0166ef..4086008a507c05060c769e34e4b798332f7c66eb 100644 (file)
@@ -1,6 +1,5 @@
 templates:
   - "templates/redis.template.yml"
-  - "templates/sshd.template.yml"
 
 env:
   LANG: en_US.UTF-8
@@ -8,10 +7,6 @@ env:
 # any extra arguments for Docker?
 # docker_args:
 
-expose:
-  - "6379:6379"
-  - "2221:22"
-
 volumes:
   - volume:
         host: /var/discourse/shared/redis
index 2db2a8351d62d216e2660248f84d801af349ba24..4aac8c9bd9665618b7ed9c7f095cd1e4ac731941 100644 (file)
@@ -17,7 +17,6 @@ templates:
   - "templates/postgres.template.yml"
   - "templates/redis.template.yml"
   - "templates/web.template.yml"
-  - "templates/sshd.template.yml"
   - "templates/web.ratelimited.template.yml"
 
 ## which TCP/IP ports should this container expose?
index 9a26a372928f18e7596f2fce8c97f668811b1b81..142fddfc710970c1d191222789325ea4f3790170 100644 (file)
@@ -2,7 +2,6 @@
 # TODO: change SOME_SECRET in this template
 
 templates:
-  - "templates/sshd.template.yml"
   - "templates/web.template.yml"
   - "templates/web.ratelimited.template.yml"
 
@@ -10,6 +9,12 @@ expose:
   - "80:80"
   - "2222:22"
 
+# Use 'links' key to link containers together, aka use Docker --link flag.
+links:
+  - link:
+      name: data
+      alias: data
+
 # any extra arguments for Docker?
 # docker_args:
 
@@ -28,8 +33,8 @@ env:
   DISCOURSE_DB_SOCKET: ''
   #DISCOURSE_DB_USERNAME: discourse
   DISCOURSE_DB_PASSWORD: SOME_SECRET
-  DISCOURSE_DB_HOST: DB_IP_ADDRESS
-  DISCOURSE_REDIS_HOST: REDIS_IP_ADDRESS
+  DISCOURSE_DB_HOST: data
+  DISCOURSE_REDIS_HOST: data
   ##
   ## TODO: List of comma delimited emails that will be made admin and developer
   ## on initial signup example 'user1@example.com,user2@example.com'
@@ -55,12 +60,6 @@ volumes:
       host: /var/discourse/shared/web-only/log/var-log
       guest: /var/log
 
-#Use 'links' key to link containers together, aka use Docker --link flag.
-#links:
-#  - link:
-#      name: data
-#      alias: data
-
 ## The docker manager plugin allows you to one-click upgrade Discouse
 ## http://discourse.example.com/admin/docker
 hooks: