File size: 185 Bytes
4ce3526
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
version: '3'

services:
  web:
    build: .
    ports:
      - "7860:7860"
    depends_on:
      - ubuntu

  ubuntu:
    image: ubuntu:20.04
    command: tail -f /dev/null
    tty: true