Difference between revisions of "Ubuntu docker-compose.yml example"
Jump to navigation
Jump to search
Line 2: | Line 2: | ||
− | version: " | + | version: "3.3" |
services: | services: | ||
Ubuntu1: | Ubuntu1: | ||
− | + | image: ubuntu | |
− | container_name: Ubuntu_container_1 | + | container_name: Ubuntu_container_1 |
− | + | hostname: Ubuntu_container_1 | |
− | [[stdin_open:]] true # | + | restart: always |
− | [[tty:]] true # | + | [[stdin_open:]] true # docker run -i |
+ | [[tty:]] true # docker run -t | ||
Ubuntu2: | Ubuntu2: | ||
− | + | image: ubuntu | |
container_name: Ubuntu_container_2 | container_name: Ubuntu_container_2 | ||
+ | hostname: Ubuntu_container_2 | ||
restart: always | restart: always | ||
− | + | stdin_open: true # docker run -i | |
− | stdin_open: true # | + | tty: true # docker run -t |
− | |||
Revision as of 15:20, 28 July 2021
This article is a Draft. Help us to complete it.
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
docker-compose
,docker-compose.yml
: [services
|volumes
|networks
|up
|down
|restart
|logs
|create
|changelog
|version
|secrets
|config
|-v
|-h
|exec], docker-compose pull
,Environment:
, Docker-compose.yml examples,.env
, release notes, expose:, docker-compose --env-file,services.deploy.resources
Advertising: