Difference between revisions of "Ubuntu docker-compose.yml example"

From wikieduonline
Jump to navigation Jump to search
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Draft}}
+
Running two [[Ubuntu]] instances:
  
 
+
  version: "3.3"
  version: "[[3.9]]"
 
 
   
 
   
 
  services:
 
  services:
  Ubuntu1:
+
  Ubuntu1:
 
         [[image]]: ubuntu
 
         [[image]]: ubuntu
         container_name: Ubuntu_container_1  
+
         container_name: Ubuntu_container_1
         [[restart:]] always
+
         hostname: Ubuntu_container_1
         stdin_open: true # [[docker run -i]]
+
        restart: always
 +
         [[stdin_open:]] true # [[docker run -i]]
 
         [[tty:]] true        # [[docker run -t]]
 
         [[tty:]] true        # [[docker run -t]]
 
   
 
   
 
   Ubuntu2:
 
   Ubuntu2:
         [[image]]: ubuntu
+
         image: ubuntu
 
         container_name: Ubuntu_container_2
 
         container_name: Ubuntu_container_2
 +
        hostname: Ubuntu_container_2
 
         restart: always
 
         restart: always
        [[tty:]] true
+
         stdin_open: true # docker run -i
         stdin_open: true # [[docker run -i]]
+
         tty: true        # docker run -t
         [[tty:]] true        # [[docker run -t]]
 
  
  

Latest revision as of 12:10, 25 October 2023

Running two Ubuntu instances:

version: "3.3"

services:
 Ubuntu1:
       image: ubuntu
       container_name: Ubuntu_container_1
       hostname: Ubuntu_container_1
       restart: always
       stdin_open: true # docker run -i
       tty: true        # docker run -t

 Ubuntu2:
       image: ubuntu
       container_name: Ubuntu_container_2
       hostname: Ubuntu_container_2
       restart: always
       stdin_open: true # docker run -i
       tty: true        # docker run -t


Related terms[edit]

See also[edit]

Advertising: