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

From wikieduonline
Jump to navigation Jump to search
Line 10: Line 10:
 
         [[restart:]] always
 
         [[restart:]] always
 
         stdin_open: true # [[docker run -i]]
 
         stdin_open: true # [[docker run -i]]
         [[tty:]] true       # [[docker run -t]]
+
         [[tty:]] true       # [[docker run -t]]
 
   
 
   
 
   Ubuntu2:
 
   Ubuntu2:

Revision as of 15:03, 28 July 2021

This article is a Draft. Help us to complete it.


version: "3.9"

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

 Ubuntu2:
       image: ubuntu
       container_name: Ubuntu_container_2
       restart: always
       tty: true 


Related terms

See also

Advertising: