haddock 0.2.1

Docker Compose for Podman
1
2
3
4
5
6
7
8
9
10
11
12
services:
  nginx:
    image: nginx:latest
    expose:
      - '80'
      - '443'
      - '8080'
  busybox:
    image: busybox
    command: busybox httpd -f -p 8000
    ports:
      - '127.0.0.1:8001:8000'