mirror of
https://github.com/craigerl/aprsd.git
synced 2025-06-13 20:02:26 -04:00
Merge pull request #193 from craigerl/docker-compose
Update the docker-compose.yml
This commit is contained in:
commit
44e2898c3f
@ -1,14 +1,27 @@
|
|||||||
version: "3"
|
|
||||||
services:
|
services:
|
||||||
aprsd:
|
aprsd:
|
||||||
image: hemna6969/aprsd:latest
|
image: hemna6969/aprsd:latest
|
||||||
container_name: aprsd
|
container_name: aprsd-server
|
||||||
ports:
|
volumes:
|
||||||
- "8001:8001"
|
- $HOME/.config/aprsd/:/config # left side of the : is your directory where your config is
|
||||||
volumes:
|
# outside of your container. Your normal filesystem.
|
||||||
- $HOME/.config/aprsd:/config
|
restart: unless-stopped
|
||||||
restart: unless-stopped
|
environment:
|
||||||
environment:
|
- TZ=America/New_York
|
||||||
- TZ=America/New_York
|
- APRSD_PLUGINS=aprsd-email-plugin,aprsd-borat-plugin
|
||||||
- APRSD_PLUGINS=aprsd-slack-plugin>=1.0.2
|
- LOG_LEVEL=ERROR
|
||||||
- LOG_LEVEL=ERROR
|
|
||||||
|
aprsd-admin: # Admin interface
|
||||||
|
image: hemna6969/aprsd:latest
|
||||||
|
container_name: aprsd-admin
|
||||||
|
volumes:
|
||||||
|
- $HOME/.config/aprsd/:/config # left side of the : is your directory where your config is
|
||||||
|
# outside of your container. Your normal filesystem.
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- 8001:8001 # left side of the : is your port on your host that you can access
|
||||||
|
# the web interface for the admin interface.
|
||||||
|
entrypoint: /app/admin.sh
|
||||||
|
environment:
|
||||||
|
- TZ=America/New_York
|
||||||
|
- APRSD_EXTENSIONS=git+https://github.com/hemna/aprsd-admin-extension.git
|
||||||
|
Loading…
x
Reference in New Issue
Block a user