Skip to content

Commit

Permalink
Create docker-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sfeakes committed May 23, 2024
1 parent fdd5491 commit 08f2324
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions release/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
services:
aqualinkd:
#image: sfeakes/aqualinkd:latest
build:
context: https://github.com/sfeakes/AqualinkD-Docker.git#main
ports:
- "6171:80"
volumes:
- type: bind # AqualinkD config directory
source: ./config
target: /aquadconf
read_only: false
- type: bind # systemd logging
source: /var/run/systemd/journal/socket
target: /var/run/systemd/journal/socket
read_only: false
- type: bind # systemd logging
source: /var/log/journal
target: /var/log/journal
read_only: true
- type: bind # time
source: /etc/localtime
target: /etc/localtime
read_only: true
- type: bind # timezone
source: /etc/timezone
target: /etc/timezone
read_only: true
devices: # Map
- "/dev/ttyUSB0:/dev/ttyUSB0"
logging:
driver: journald

0 comments on commit 08f2324

Please sign in to comment.