23 lines
546 B
YAML
23 lines
546 B
YAML
version: "3"
|
|
services:
|
|
download_spx_quotes:
|
|
image: <gitea url>/moshferatu/download-spx-quotes:latest
|
|
container_name: download-spx-quotes
|
|
volumes:
|
|
- <data directory>/SPX Options Quotes:/spx-options-quotes
|
|
networks:
|
|
download-spx-quotes:
|
|
ipv4_address: <static ip>
|
|
environment:
|
|
- USER=
|
|
- PASSWORD=
|
|
- ORDER=
|
|
- ITEM=
|
|
- DOWNLOAD_DIRECTORY=
|
|
restart: unless-stopped
|
|
networks:
|
|
download-spx-quotes:
|
|
name: download-spx-quotes
|
|
ipam:
|
|
config:
|
|
- subnet: <subnet> |