docker-compose.yml 280 B

123456789101112131415
  1. version: "3"
  2. services:
  3. WineServer:
  4. image: ubuntu:certified
  5. container_name: WineServer
  6. restart: unless-stopped
  7. environment:
  8. ports:
  9. - 4090:4090
  10. volumes:
  11. - ./:/srv
  12. - /etc/localtime:/etc/localtime:ro
  13. command: ["./main", "config.json"]