Skip to content

Releases: acidlemon/mirage

v0.4.1

06 Jun 02:12
20d15b0
Compare
Choose a tag to compare

New Feature

  • Static build (#27)

v0.4.0

17 Apr 06:29
29103d8
Compare
Choose a tag to compare

Build using Go 1.12.4

BugFixes

  • fix race on domain map (#17)
  • fix leveldb library interface (#19)

New Feature

  • Show Launched At date (#18)
  • Ability to specify container name (#21 / #22)
  • Support docker HostConfig on config.yml (#23 / #26)
  • Add Log API (#24 / #25)

v0.3.1

05 Nov 05:50
Compare
Choose a tag to compare

Update

  • #10, #14 Add Custom Parameters (thanks! @Konboi)
  • Build with golang 1.5
  • Pass SUBDOMAIN environment variable to container
  • #13 Websocket Support

BugFix

  • #15 Avoid socks fd depletion with recent go-dockerclient (in 0.3.0, thanks! @shogo82148)

Note for 0.2.0 or 0.1.x users

Now config.yml requires below settings. If you divert previous config file, please add this settings.

parameters:
  - name: branch
    env: GIT_BRANCH
    rule: ""
    required: true

v0.2.0

24 Dec 02:35
Compare
Choose a tag to compare

Update

  • support datadir & htmldir
  • build with golang 1.4

v0.1.3

07 Dec 08:10
Compare
Choose a tag to compare

BugFix Release

#5 sometimes leveldb-go makes conflict on file system when race condition (fixed by @shogo82148, thanks!)

v0.1.2

25 Nov 08:20
Compare
Choose a tag to compare

BugFix Release

  • #4 sometimes 404 Error occurred (fixed by @9renpoto, thanks!)

v0.1.1

04 Sep 07:13
Compare
Choose a tag to compare

Bugfix Release

  • Listen.HTTP on config.yml does not work properly

note for v0.1.0 user

config.yml has changed without compatibility. Please change it like below.

v0.1.0:

listen:
  HTTP:
    - 8080:5000

v0.1.1:

listen:
  http:
    - listen: 8080
      target: 5000

change item name HTTP => http, and sub item has structure now.

v0.1.0: first release

28 Aug 07:48
Compare
Choose a tag to compare

Current Limitation

  • data directory and html directory cannot change yet