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

From wikieduonline
Jump to navigation Jump to search
(Created page with "{{Draft}} == See also == * {{docker-compose}} Category:Docker Category:Docker-compose")
 
 
(22 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Draft}}
+
Running two [[Ubuntu]] instances:
  
 +
version: "3.3"
 +
 +
[[services:]]
 +
  Ubuntu1:
 +
        [[docker-compose.yml: image:|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 ==
 +
* [[Docker-compose.yml examples]]
 +
* <code>[[docker ps]]</code>
  
 
== See also ==
 
== See also ==

Latest revision as of 16:26, 16 July 2024

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: