Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create docker-compose.yml #299

Merged
merged 1 commit into from
May 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading