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

From wikieduonline
Jump to navigation Jump to search
Line 5: Line 5:
 
  services:
 
  services:
 
   Ubuntu1:
 
   Ubuntu1:
         image: ubuntu
+
         [[image:]] ubuntu
 
         container_name: Ubuntu_container_1
 
         container_name: Ubuntu_container_1
 
         hostname: Ubuntu_container_1
 
         hostname: Ubuntu_container_1

Revision as of 21:07, 21 June 2022

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

See also

Advertising: