Docker Compose Keep Container em execução
version: '2'
services:
my-test:
image: ubuntu
command: tail -F anything
Suspect Camel
version: '2'
services:
my-test:
image: ubuntu
command: tail -F anything
version: "3"
services:
service:
container_name: "project_name"
build: .
ports:
- "3000:3000"
command: tail -f /etc/hostname